Skip to content
LangChain

Perseus — Live Context Engine for AI Agents for LangChain

io.github.tcconnally/perseus

Live context engine for AI agents. 27+ MCP tools: health, memory, skills, file trees on demand.

client:LangChain transport:stdio runtime:pypi

Install Perseus — Live Context Engine for AI Agents in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "perseus": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["perseus-ctx"],
        }
})

tools = await client.get_tools()

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

Perseus — Live Context Engine for AI Agents in other clients