Mcp Server Axiom Js — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Server Axiom Js (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A JavaScript port of the official Axiom MCP server that enables AI agents to query data using Axiom Processing Language (APL).
<a href="https://glama.ai/mcp/servers/8hxxw8uenu"> <img width="380" height="200" src="https://glama.ai/mcp/servers/8hxxw8uenu/badge" /> </a>
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>"
}
}
}#### 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
export AXIOM_TOKEN=your_token
mcp-server-axiommcp-server-axiom config.jsonExample 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 toolqueryApl: 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
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.