Skip to content
LangChain

first agentic csa for LangChain

io.github.ramalamadingdong/first-agentic-csa

FRC documentation MCP server for WPILib, REV, CTRE, Redux, and PhotonVision.

client:LangChain transport:stdio runtime:pypi

Install first agentic csa in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "first-agentic-csa": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["first-agentic-csa"],
        }
})

tools = await client.get_tools()

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

first agentic csa in other clients