Skip to content
LangChain

ASTGL Knowledge for LangChain

io.github.jmeg8r/astgl-knowledge

Search and cite ASTGL articles about MCP servers, local AI, and AI automation.

client:LangChain transport:stdio runtime:npm

Install ASTGL Knowledge in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

ASTGL Knowledge in other clients