AIXBT Docs

MCP

Connect an MCP client to AIXBT

AIXBT exposes one Streamable HTTP MCP server at https://api.aixbt.tech/mcp. Only the Topic tools, list_topics and get_topic, work without credentials; calling a protected tool returns an OAuth 2.1 challenge so an interactive client can ask the user to sign in.

Connect

Add https://api.aixbt.tech/mcp to an interactive client with no headers.

For non-interactive use, create an API key in Integrations, then keep it in your client's secret or environment-variable store:

{
  "mcpServers": {
    "aixbt": {
      "type": "streamable-http",
      "url": "https://api.aixbt.tech/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Discover tools

Your client discovers the current tools and input/output schemas through the MCP handshake and tools/list, without signing in. Treat that response, not a copied tool inventory, as the contract.

The tools serve the same v3 resources as the REST API: identical shapes, filters (including free-text intel search), entitlements, and error codes. Use the me tool to see your credential's entitlements, rate limits, and history window, and get_vocabulary for every value a filter accepts.

On this page