Connect LangChain
Load Agami's tools into a LangChain or LangGraph agent in a few lines.
No signup required
There's nothing to sign up for first. Add the Agami MCP server to LangChain using the URL below, then Connect. The first time you connect, LangChain hands you to Agami's sign-in: choose Google or Microsoft, and a demo account is created on the spot. No API key.
https://public.agami.ai/mcp LangChain / LangGraph
For developersUse MultiServerMCPClient from langchain-mcp-adapters to consume Agami's MCP server as a set of LangChain tools over the streamable-HTTP transport, then hand those tools to your agent. Pass a bearer token via headers, or wire OAuth through a custom httpx.Auth.
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"agami": {
"transport": "http",
"url": "https://public.agami.ai/mcp",
"headers": {"Authorization": "Bearer <token>"},
}
})
tools = await client.get_tools() # plug into a LangChain / LangGraph agent For full OAuth (rather than a static bearer token), pass an auth implementing httpx.Auth, see the GitHub README and the MCP Python SDK.
- The SSE transport is deprecated; use "http" (streamable HTTP).
- langchain-mcp-adapters is pre-1.0, so the OAuth helper signatures can change between minor releases.
LangChain treats an MCP server as a tool provider. A handful of lines with
MultiServerMCPClient turns Agami’s tools into LangChain tools your agent can
call, so you can build governed data access into your own LangGraph workflows
rather than wiring up SQL by hand.
Prefer to run it locally?
LiteBI is our open-source distribution: the same engine, fully on your machine. Point it at your own database and connect LangChain to the local MCP server.
Ask your first question
Add the server URL to LangChain, sign in with Google or Microsoft, and ask. The demo is free.
LangChain and its logo are trademarks of their owner. Agami is not affiliated with, endorsed by, or sponsored by them. Setup steps live on the vendor's official documentation, linked above, and may change. Verified 2026-05-31.