Skip to content
LangChain

mcp docs server for LangChain

io.github.mapbox/mcp-docs-server

AI access to Mapbox docs, API references, style specs, and guides. No token required.

client:LangChain transport:streamable-http runtime:npm tools:3

Install mcp docs server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-docs-server": {
            "transport": "streamable_http",
            "url": "https://mcp-docs.mapbox.com/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

mcp docs server in other clients