Skip to content
LangChain

aigentify for LangChain

io.github.pooriaarab/aigentify

Audit and generate agent-native product surfaces

client:LangChain transport:stdio runtime:npm

Install aigentify in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

aigentify in other clients