From f67afcc992757ddaa9b6ff2f5cd239f462801ed5 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 12:48:22 +0000 Subject: [PATCH 1/4] Add Axiom MCP server definition Community Axiom MCP server for log analysis and observability. Execute APL queries, list datasets, and ingest events. Uses mcp-server-axiom npm package. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/community.axiom.json | 79 ++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 servers/community.axiom.json diff --git a/servers/community.axiom.json b/servers/community.axiom.json new file mode 100644 index 0000000..b9b2792 --- /dev/null +++ b/servers/community.axiom.json @@ -0,0 +1,79 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "community.axiom", + "name": "Axiom", + "alias": "axiom", + "description": "Query and manage Axiom datasets for log analysis and observability. Execute APL queries, list datasets, and ingest events.", + "icon": "https://avatars.githubusercontent.com/u/21122348?v=4", + "schema_version": "2.1", + "categories": ["monitoring", "database"], + "tags": ["axiom", "logs", "observability", "analytics", "apl", "datasets"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "mcp-server-axiom"], + "env": { + "AXIOM_TOKEN": "${input:AXIOM_TOKEN}", + "AXIOM_ORG_ID": "${input:AXIOM_ORG_ID}" + }, + "metadata": { + "inputs": [ + { + "id": "AXIOM_TOKEN", + "label": "Axiom API Token", + "description": "API token for the Axiom API. Use an Advanced token for query and dataset access.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "xapt-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", + "obtain": { + "url": "https://app.axiom.co/settings/api-tokens", + "instructions": "1. Go to app.axiom.co > Settings > API tokens\n2. Click 'New API token'\n3. Select 'Advanced' token type for full access\n4. Copy the generated token (starts with xapt-)", + "button_label": "Create Token" + } + }, + { + "id": "AXIOM_ORG_ID", + "label": "Axiom Organization ID", + "description": "Your Axiom organization ID, found in Settings.", + "type": "text", + "required": true, + "secret": false, + "placeholder": "my-org-id", + "obtain": { + "url": "https://app.axiom.co/settings", + "instructions": "1. Go to app.axiom.co > Settings\n2. Copy your Organization ID", + "button_label": "Get Org ID" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Create an API token at https://app.axiom.co/settings/api-tokens" + }, + + "contributor": { + "name": "ThetaBird", + "github": "ThetaBird", + "url": "https://github.com/ThetaBird" + }, + + "links": { + "repository": "https://github.com/ThetaBird/mcp-server-axiom-js", + "homepage": "https://axiom.co", + "documentation": "https://axiom.co/docs" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 9e6a96908eae095d4da9eff70ea3822a4cdc7490 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:08:18 +0800 Subject: [PATCH 2/4] fix: update server definition (input type 'password' -> 'text' for AXIOM_TOKEN) --- servers/community.axiom.json | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/servers/community.axiom.json b/servers/community.axiom.json index b9b2792..3250751 100644 --- a/servers/community.axiom.json +++ b/servers/community.axiom.json @@ -6,13 +6,25 @@ "description": "Query and manage Axiom datasets for log analysis and observability. Execute APL queries, list datasets, and ingest events.", "icon": "https://avatars.githubusercontent.com/u/21122348?v=4", "schema_version": "2.1", - "categories": ["monitoring", "database"], - "tags": ["axiom", "logs", "observability", "analytics", "apl", "datasets"], - + "categories": [ + "monitoring", + "database" + ], + "tags": [ + "axiom", + "logs", + "observability", + "analytics", + "apl", + "datasets" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "mcp-server-axiom"], + "args": [ + "-y", + "mcp-server-axiom" + ], "env": { "AXIOM_TOKEN": "${input:AXIOM_TOKEN}", "AXIOM_ORG_ID": "${input:AXIOM_ORG_ID}" @@ -23,7 +35,7 @@ "id": "AXIOM_TOKEN", "label": "Axiom API Token", "description": "API token for the Axiom API. Use an Advanced token for query and dataset access.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "xapt-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", @@ -50,26 +62,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Create an API token at https://app.axiom.co/settings/api-tokens" }, - "contributor": { "name": "ThetaBird", "github": "ThetaBird", "url": "https://github.com/ThetaBird" }, - "links": { "repository": "https://github.com/ThetaBird/mcp-server-axiom-js", "homepage": "https://axiom.co", "documentation": "https://axiom.co/docs" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From df0d41bbe82878aa5417ae28c7fb678e25c57531 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:43:52 +0800 Subject: [PATCH 3/4] fix: rename server files with transport suffix - community.axiom.json -> community.axiom-npx.json (id: community.axiom-npx) Signed-off-by: Mohammod Al Amin Ashik --- servers/{community.axiom.json => community.axiom-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{community.axiom.json => community.axiom-npx.json} (97%) diff --git a/servers/community.axiom.json b/servers/community.axiom-npx.json similarity index 97% rename from servers/community.axiom.json rename to servers/community.axiom-npx.json index 3250751..e59e666 100644 --- a/servers/community.axiom.json +++ b/servers/community.axiom-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "community.axiom", - "name": "Axiom", + "id": "community.axiom-npx", + "name": "Axiom (npx)", "alias": "axiom", "description": "Query and manage Axiom datasets for log analysis and observability. Execute APL queries, list datasets, and ingest events.", "icon": "https://avatars.githubusercontent.com/u/21122348?v=4", From ec963d3d3e9e632e12b4afe8daf6d5ff3601d62e Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:47:19 +0800 Subject: [PATCH 4/4] fix: use GitHub org as ID domain for community definitions - community.axiom-npx -> thetabird.axiom-mcp-npx Signed-off-by: Mohammod Al Amin Ashik --- .../{community.axiom-npx.json => thetabird.axiom-mcp-npx.json} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename servers/{community.axiom-npx.json => thetabird.axiom-mcp-npx.json} (98%) diff --git a/servers/community.axiom-npx.json b/servers/thetabird.axiom-mcp-npx.json similarity index 98% rename from servers/community.axiom-npx.json rename to servers/thetabird.axiom-mcp-npx.json index e59e666..0965aca 100644 --- a/servers/community.axiom-npx.json +++ b/servers/thetabird.axiom-mcp-npx.json @@ -1,6 +1,6 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "community.axiom-npx", + "id": "thetabird.axiom-mcp-npx", "name": "Axiom (npx)", "alias": "axiom", "description": "Query and manage Axiom datasets for log analysis and observability. Execute APL queries, list datasets, and ingest events.",