Skip to content
LangChain

UK Constituencies MCP Server from MCPBundles for LangChain

com.mcpbundles/uk-constituencies

Search UK parliamentary constituencies by name, get boundaries and ONS codes

client:LangChain transport:streamable-http runtime:mcpb

Install UK Constituencies MCP Server from MCPBundles in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "uk-constituencies": {
            "transport": "streamable_http",
            "url": "https://mcp.mcpbundles.com/bundle/uk-constituencies/",
        }
})

tools = await client.get_tools()

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

UK Constituencies MCP Server from MCPBundles in other clients