Skip to content
LangChain

anotherai for LangChain

dev.anotherai/anotherai

MCP server for building and testing AI agents with multi-model experimentation and insights.

client:LangChain transport:streamable-http

Install anotherai in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "anotherai": {
            "transport": "streamable_http",
            "url": "https://api.anotherai.dev/mcp",
        }
})

tools = await client.get_tools()

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

anotherai in other clients