Skip to content
LangChain

Algolia Productivity for LangChain

io.github.algolia/algolia-productivity

Connect LLM tools to your Algolia account with user-scoped access for internal workflows.

client:LangChain transport:streamable-http

Install Algolia Productivity in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "algolia-productivity": {
            "transport": "streamable_http",
            "url": "https://mcp.algolia.com/mcp",
        }
})

tools = await client.get_tools()

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

Algolia Productivity in other clients