Skip to content
LangChain

Human Design API (Human Design Hub) for LangChain

io.github.k4771kim/human-design-api

JPL-referenced Human Design charts for AI agents: bodygraph, transit, composite, Penta, DreamRave.

client:LangChain transport:streamable-http tools:6

Install Human Design API (Human Design Hub) in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "human-design-api": {
            "transport": "streamable_http",
            "url": "https://api.humandesignhub.app/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

Human Design API (Human Design Hub) in other clients