MCP.so
Sign In

MCP Server for Axiom

@MCP-Mirror

About MCP Server for Axiom

Mirror of

Basic information

Category

Other

Transports

stdio

Publisher

MCP-Mirror

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "axiom": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-server-axiom"
      ],
      "env": {
        "AXIOM_TOKEN": "<AXIOM_TOKEN_HERE>",
        "AXIOM_URL": "https://api.axiom.co",
        "AXIOM_ORG_ID": "<AXIOM_ORG_ID_HERE>"
      }
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is MCP Server for Axiom?

The MCP Server for Axiom is a JavaScript port of the official Axiom MCP server that enables AI agents to query data using Axiom Processing Language (APL). It is packaged as an npm module for easier integration with Node.js environments.

How to use MCP Server for Axiom?

Install the package globally via npm install -g mcp-server-axiom or run directly with npx. Configure using environment variables (AXIOM_TOKEN, AXIOM_ORG_ID, optional AXIOM_URL, rate limits) or a JSON config file. Start the server by running mcp-server-axiom or mcp-server-axiom config.json. The server exposes HTTP endpoints for tool calling.

Key features of MCP Server for Axiom

  • Execute APL queries against Axiom datasets
  • List available datasets in the Axiom organization
  • Configurable rate limiting for queries and dataset operations
  • Lightweight HTTP API for tool invocation
  • JSON config file support for flexible setup

Use cases of MCP Server for Axiom

  • AI agents querying production logs for error analysis
  • Automated monitoring tools listing datasets for discovery
  • Integrating Axiom data into MCP‑compatible assistants

FAQ from MCP Server for Axiom

What is APL?

APL stands for Axiom Processing Language, the query language used to search and analyze data in Axiom.

What are the runtime requirements?

The server runs on Node.js and is installed via npm. It requires valid Axiom API credentials (AXIOM_TOKEN and AXIOM_ORG_ID).

How are rate limits configured?

Rate limits for queries and dataset list operations are set via environment variables (AXIOM_QUERY_RATE, AXIOM_QUERY_BURST, AXIOM_DATASETS_RATE, AXIOM_DATASETS_BURST) or in the config file.

What transport does the server use?

The server communicates over HTTP, providing RESTful endpoints at GET /, GET /tools, and POST /tools/:name/call.

Where is my data stored?

The server queries data stored in Axiom’s cloud platform. No local data storage is mentioned; the server acts as a bridge between the MCP client and Axiom.

Comments

More Other MCP servers