Skip to content
LangChain

Govcon Intel for LangChain

io.github.pipeworx-io/govcon-intel

GovCon Intel MCP — Compound tools that chain SAM.gov, USAspending,

client:LangChain transport:streamable-http

Install Govcon Intel in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Govcon Intel in other clients