Skip to content
LangChain

Sec Regulations for LangChain

io.github.pipeworx-io/sec-regulations

SEC Regulations MCP — US securities regulations (17 CFR).

client:LangChain transport:streamable-http

Install Sec Regulations in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Sec Regulations in other clients