
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
mcp-server-axiom
Advanced tools
An MCP server implementation for Axiom that enables AI agents to query data using Axiom Processing Language (APL)
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.
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>"
}
}
}
npm install -g mcp-server-axiom
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)export AXIOM_TOKEN=your_token
mcp-server-axiom
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
}
GET /: Get server implementation infoGET /tools: List available toolsPOST /tools/:name/call: Call a specific tool
queryApl: Execute APL querieslistDatasets: List available datasetscurl -X POST http://localhost:3000/tools/queryApl/call \
-H "Content-Type: application/json" \
-d '{
"arguments": {
"query": "['logs'] | where ['severity'] == \"error\" | limit 10"
}
}'
curl -X POST http://localhost:3000/tools/listDatasets/call \
-H "Content-Type: application/json" \
-d '{
"arguments": {}
}'
MIT
FAQs
An MCP server implementation for Axiom that enables AI agents to query data using Axiom Processing Language (APL)
The npm package mcp-server-axiom receives a total of 171 weekly downloads. As such, mcp-server-axiom popularity was classified as not popular.
We found that mcp-server-axiom demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.