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

Connect Your AI Tool

Ready-to-paste Norbix MCP configuration for Claude, Cursor, VS Code, Windsurf, ChatGPT, and Gemini.

Every setup below uses the same MCP server and the same three values: your API key, the Hub URL (https://hub.norbix.ai), and optionally a project ID.

Before you start, create a service user and API key β€” see MCP Server β†’ What you need.

Add to claude_desktop_config.json β†’ mcpServers:

{
  "mcpServers": {
    "norbix": {
      "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"
      }
    }
  }
}

Restart Claude Desktop. You should see the norbix tools in the tools menu.

One command:

claude mcp add norbix \
  -e NORBIX_API_KEY=your-api-key \
  -e NORBIX_HUB_URL=https://hub.norbix.ai \
  -e NORBIX_PROJECT_ID=your-project-id \
  -- npx -y @norbix.ai/mcp

Add to .cursor/mcp.json (per project) or ~/.cursor/mcp.json (global):

For GitHub Copilot agent mode, add to .vscode/mcp.json:

Add to ~/.codeium/windsurf/mcp_config.json β€” same JSON shape as Cursor:

ChatGPT connects to remote MCP servers (Settings β†’ Connectors, developer mode). Run the Norbix MCP server in remote mode on a host you control:

Then add the connector in ChatGPT pointing to https://your-host/mcp. Put the server behind TLS, and pass the API key with the Authorization: Bearer header.

Add to ~/.gemini/settings.json:

Try it

Ask your AI tool something like:

"List my Norbix projects" Β· "Show the database schemas in project X" Β· "Create a collection called orders with fields for amount, currency, and status" Β· "Show me the last 20 error logs"

Troubleshooting

  • Tools do not appear β€” restart the client after editing the config file. Check that npx -y @norbix.ai/mcp runs in your terminal.

  • Auth errors β€” the API key is missing or the service user's role does not allow the action. Check the key and role in Membership β†’ Service users.

  • Wrong project β€” set NORBIX_PROJECT_ID, or just ask the agent to switch: it can use the norbix_set_project tool.

Last updated