For the complete documentation index, see llms.txt. This page is also available as Markdown.

LangChain

Use Norbix tools inside LangChain agents through the MCP adapter.

LangChain loads MCP servers through the official langchain-mcp-adapters package. One client config gives your agent every Norbix tool.

Install

pip install langchain-mcp-adapters langchain

Load Norbix tools

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient(
    {
        "norbix": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@norbix.ai/mcp"],
            "env": {
                "NORBIX_API_KEY": "your-api-key",
                "NORBIX_HUB_URL": "https://hub.norbix.ai",
                "NORBIX_PROJECT_ID": "your-project-id",
            },
        }
    }
)

tools = await client.get_tools()
# pass `tools` to any LangChain agent

The agent can now search endpoints, read schemas, query collections, manage users β€” whatever the service user's role allows.

Give agents the smallest role that works. A read-only role is enough for analysis and reporting agents. See MCP Server β†’ Security notes.

Last updated