- Explore MCP Servers
- mcp-server-axiom-js
Mcp Server Axiom Js
What is Mcp Server Axiom Js
mcp-server-axiom-js is a JavaScript implementation of the official Axiom MCP server, enabling AI agents to query data using Axiom Processing Language (APL). It is designed to provide the same functionality as the original Go version, packaged as an npm module for easier integration with Node.js environments.
Use cases
Use cases for mcp-server-axiom-js include building AI agents that need to query data from Axiom, developing data-driven applications, and integrating Axiom’s data processing capabilities into existing Node.js applications.
How to use
To use mcp-server-axiom-js, you can run it directly using npx or install it globally via npm. Configuration requires setting up environment variables such as AXIOM_TOKEN and AXIOM_ORG_ID. You can also run the server using a configuration file.
Key features
Key features of mcp-server-axiom-js include easy integration with Node.js, support for Axiom Processing Language (APL), customizable environment variables for configuration, and the ability to manage query rates and dataset operations.
Where to use
mcp-server-axiom-js can be used in various fields that require data querying and processing, particularly in AI applications, data analytics, and environments where Node.js is utilized.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Mcp Server Axiom Js
mcp-server-axiom-js is a JavaScript implementation of the official Axiom MCP server, enabling AI agents to query data using Axiom Processing Language (APL). It is designed to provide the same functionality as the original Go version, packaged as an npm module for easier integration with Node.js environments.
Use cases
Use cases for mcp-server-axiom-js include building AI agents that need to query data from Axiom, developing data-driven applications, and integrating Axiom’s data processing capabilities into existing Node.js applications.
How to use
To use mcp-server-axiom-js, you can run it directly using npx or install it globally via npm. Configuration requires setting up environment variables such as AXIOM_TOKEN and AXIOM_ORG_ID. You can also run the server using a configuration file.
Key features
Key features of mcp-server-axiom-js include easy integration with Node.js, support for Axiom Processing Language (APL), customizable environment variables for configuration, and the ability to manage query rates and dataset operations.
Where to use
mcp-server-axiom-js can be used in various fields that require data querying and processing, particularly in AI applications, data analytics, and environments where Node.js is utilized.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
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:
{
"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>"
}
}
}
Local Development & Testing
Installation
npm install -g mcp-server-axiom
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:
export AXIOM_TOKEN=your_token
mcp-server-axiom
- Using a config file:
mcp-server-axiom config.json
Example config.json:
{
"token": "your_token",
"url": "https://custom.axiom.co",
"orgId": "your_org_id",
"queryRate": 2,
"queryBurst": 5,
"datasetsRate": 1,
"datasetsBurst": 2
}
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:
curl -X POST http://localhost:3000/tools/queryApl/call \
-H "Content-Type: application/json" \
-d '{
"arguments": {
"query": "['logs'] | where ['severity'] == \"error\" | limit 10"
}
}'
- List Datasets:
curl -X POST http://localhost:3000/tools/listDatasets/call \
-H "Content-Type: application/json" \
-d '{
"arguments": {}
}'
License
MIT
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










