Integrations
A JavaScript port of the Axiom MCP server that enables querying data using Axiom Processing Language (APL), allowing AI agents to explore datasets, execute queries, and analyze data stored in Axiom.
Provides Node.js integration for the Axiom MCP server, packaged as an npm module for easier integration with Node.js environments to query and analyze data stored in Axiom.
MCP Server for Axiom
A JavaScript port of the official Axiom MCP server that enables AI agents to query data using Axiom Processing Language (APL).
This implementation provides the same functionality as the original Go version but packaged as an npm module for easier integration with Node.js environments.
Installation & Usage
MCP Configuration
You can run this MCP server directly using npx. Add the following configuration to your MCP configuration file:
Local Development & Testing
Installation
Environment Variables
The server can be configured using environment variables:
AXIOM_TOKEN
(required): Your Axiom API tokenAXIOM_ORG_ID
(required): Your Axiom organization IDAXIOM_URL
(optional): Custom Axiom API URL (defaults to https://api.axiom.co)AXIOM_QUERY_RATE
(optional): Queries per second limit (default: 1)AXIOM_QUERY_BURST
(optional): Query burst capacity (default: 1)AXIOM_DATASETS_RATE
(optional): Dataset list operations per second (default: 1)AXIOM_DATASETS_BURST
(optional): Dataset list burst capacity (default: 1)PORT
(optional): Server port (default: 3000)
Running the Server Locally
- Using environment variables:
- Using a config file:
Example config.json:
API Endpoints
GET /
: Get server implementation infoGET /tools
: List available toolsPOST /tools/:name/call
: Call a specific tool- Available tools:
queryApl
: Execute APL querieslistDatasets
: List available datasets
- Available tools:
Example Tool Calls
- Query APL:
- List Datasets:
License
MIT
You must be authenticated.
hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
An npx-compatible port of @Axiom's mcp-server-axiom
Related Resources
Related MCP Servers
- AsecurityAlicenseAqualityAn MCP server to run commands.Last updated -2556133TypeScriptMIT License
- AsecurityAlicenseAqualityMCP server for searching npm packagesLast updated -1477JavaScriptMIT License
- -securityAlicense-qualityA Model Context Protocol server implementation for Axiom that enables AI agents to query your data using Axiom Processing Language (APL).Last updated -32GoMIT License
- -securityFlicense-qualityA minimal TypeScript MCP server that provides a 'hello' tool using the fastMCP framework.Last updated -TypeScript