AIXBT Docs

MCP

Connect AI agents to AIXBT via the Model Context Protocol

The AIXBT MCP server gives AI agents direct access to projects, signals, momentum, recipes, and market grounding. It uses the Streamable HTTP transport.

Connection URL

https://api.aixbt.tech/mcp

Authentication: include your API key as a Bearer token in the Authorization header, or append it as a query parameter if your client doesn't support custom headers:

https://api.aixbt.tech/mcp?api_key=YOUR_API_KEY

Claude Desktop

Add to your Claude Desktop config (claude_desktop_config.json):

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

Never commit your API key to version control. Use environment variables or a secrets manager in production.

Claude.ai

Claude.ai does not support custom headers for MCP. Use the query parameter format:

  • URL: https://api.aixbt.tech/mcp?api_key=YOUR_API_KEY

Other MCP Clients

Any client supporting Streamable HTTP transport can connect:

  • URL: https://api.aixbt.tech/mcp
  • Auth header: Authorization: Bearer YOUR_API_KEY
  • If your client doesn't support custom headers, use https://api.aixbt.tech/mcp?api_key=YOUR_API_KEY

Available Tools

ToolDescription
list_projectsSearch and list projects by name, ticker, chain, momentum
get_projectGet full project details including signals and market data
get_momentumHourly momentum history with cluster breakdown
get_rankRank position history for a project
list_signalsTimeline of detected market events with filters
list_signal_categoriesList available signal categories
list_clustersList tracked community clusters
list_chainsList supported blockchain networks
get_groundingReal-time market context snapshot
list_recipesBrowse the recipe catalog
get_recipeGet recipe details and parameters
run_recipeExecute a recipe pipeline
validate_recipeValidate a recipe YAML before running
get_usage_guideDetailed usage guide (call this for help)

Resources

MCP clients that support resources can access:

URIContent
aixbt://docs/guideData guide: concepts, query patterns, analysis workflows
aixbt://docs/recipe-specificationRecipe YAML schema
aixbt://docs/recipe-building-blocksProvider actions and examples

Getting a Key

See Getting Started for access tiers and pricing. Purchase a key via x402 or subscribe at aixbt.tech.

On this page