Skip to content
LangChain

The Blue Alliance for LangChain

io.github.withinfocus/tba

The Blue Alliance MCP Server

client:LangChain transport:stdio runtime:npm

Install The Blue Alliance in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "tba": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@withinfocus/tba-mcp-server"],
        }
})

tools = await client.get_tools()

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

The Blue Alliance in other clients