Skip to content
LangChain

GetBirthChart MCP for LangChain

io.github.getbirthchart-com/getbirthchart-mcp

Official MCP server for GetBirthChart astrology calculations.

client:LangChain transport:stdio runtime:npm

Install GetBirthChart MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

GetBirthChart MCP in other clients