Skip to content
LangChain

Permid for LangChain

io.github.pipeworx-io/permid

PermID MCP — Refinitiv / LSEG Permanent Identifier (free, requires API key)

client:LangChain transport:streamable-http

Install Permid in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "permid": {
            "transport": "streamable_http",
            "url": "https://gateway.pipeworx.io/permid/mcp",
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

Permid in other clients