Skip to content
LangChain

agentfolio for LangChain

io.github.0xbrainkid/agentfolio

Query AI agent profiles, trust scores, verifications, and marketplace jobs on AgentFolio.

client:LangChain transport:stdio runtime:npm

Install agentfolio in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

agentfolio in other clients