Skip to content
LangChain

DiscGolfAPI MCP for LangChain

io.github.frankbongo/discgolfapi

Search disc golf courses worldwide, find nearby courses, and retrieve course details and updates.

client:LangChain transport:streamable-http tools:4

Install DiscGolfAPI MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "discgolfapi": {
            "transport": "streamable_http",
            "url": "https://io.discgolfapi.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

DiscGolfAPI MCP in other clients