drio
Open app

MCP Server for Axiom

Source

Catalog onlyCatalog onlySTDIO

Overview

MCP Server for Axiom is a JavaScript implementation of the official Axiom MCP server that allows AI agents to query data using Axiom Processing Language (APL).

To use the MCP Server, you can run it directly using npx or install it globally via npm. Configure it with your Axiom API token and organization ID, and run the server locally.

  • JavaScript port of the official Axiom MCP server - Easy integration with Node.js environments - Supports Axiom Processing Language (APL) for data queries - Configurable via environment variables or configuration files
  1. Enabling AI agents to perform data analysis using APL.
  2. Integrating with applications that require querying datasets.
  3. Facilitating local development and testing of Axiom queries.

Add to your AI client

Use these steps to connect MCP Server for Axiom in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-axiom-js-thetabird": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-axiom-js-thetabird"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-axiom-js-thetabird": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-axiom-js-thetabird"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-axiom-js-thetabird": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-axiom-js-thetabird"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-axiom-js-thetabird": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-axiom-js-thetabird"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-axiom-js-thetabird": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-axiom-js-thetabird"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-axiom-js-thetabird": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-axiom-js-thetabird"
      ]
    }
  }
}

FAQ

What is Axiom Processing Language (APL)?

APL is a query language designed for querying and analyzing data in Axiom.

How do I install the MCP Server?

You can install it globally using `npm install -g mcp-server-axiom` or run it directly with `npx`.

What environment variables are required?

You need to set `AXIOM_TOKEN` and `AXIOM_ORG_ID` to run the server.