drio
Open app

MCP Server for Axiom

Source

Mirror of

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 querying data - Configurable via environment variables and configuration files
  1. Enabling AI agents to perform data queries in real-time.
  2. Integrating Axiom data processing capabilities into JavaScript applications.
  3. Facilitating data analysis and reporting through APL 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": {
    "thetabird-mcp-server-axiom-js-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-thetabird-mcp-server-axiom-js-mcp-mirror"
      ]
    }
  }
}

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": {
    "thetabird-mcp-server-axiom-js-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-thetabird-mcp-server-axiom-js-mcp-mirror"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is Axiom Processing Language (APL)?

APL is a query language designed for data analysis and processing in Axiom.

Is the MCP Server for Axiom free to use?

Yes! The MCP Server is open-source and free to use.

How do I configure the server?

You can configure the server using environment variables or a configuration file.