Skip to content
LangChain

agentprofile for LangChain

io.github.everyai-com/agentprofile

One profile — skills, credentials, and memory — synced to every agent tool via one MCP URL.

client:LangChain transport:streamable-http

Install agentprofile in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "agentprofile": {
            "transport": "streamable_http",
            "url": "https://agentprofile.everyai-com.workers.dev/mcp",
        }
})

tools = await client.get_tools()

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

agentprofile in other clients