Skip to content

Commit b04628d

Browse files
authored
feat: add Axiom MCP server definition (#26)
* 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 * fix: update server definition (input type 'password' -> 'text' for AXIOM_TOKEN) * 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 <maa.ashik00@gmail.com> * fix: use GitHub org as ID domain for community definitions - community.axiom-npx -> thetabird.axiom-mcp-npx Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent d6f2f68 commit b04628d

1 file changed

Lines changed: 88 additions & 0 deletions

File tree

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "thetabird.axiom-mcp-npx",
4+
"name": "Axiom (npx)",
5+
"alias": "axiom",
6+
"description": "Query and manage Axiom datasets for log analysis and observability. Execute APL queries, list datasets, and ingest events.",
7+
"icon": "https://avatars.githubusercontent.com/u/21122348?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"monitoring",
11+
"database"
12+
],
13+
"tags": [
14+
"axiom",
15+
"logs",
16+
"observability",
17+
"analytics",
18+
"apl",
19+
"datasets"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"mcp-server-axiom"
27+
],
28+
"env": {
29+
"AXIOM_TOKEN": "${input:AXIOM_TOKEN}",
30+
"AXIOM_ORG_ID": "${input:AXIOM_ORG_ID}"
31+
},
32+
"metadata": {
33+
"inputs": [
34+
{
35+
"id": "AXIOM_TOKEN",
36+
"label": "Axiom API Token",
37+
"description": "API token for the Axiom API. Use an Advanced token for query and dataset access.",
38+
"type": "text",
39+
"required": true,
40+
"secret": true,
41+
"placeholder": "xapt-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
42+
"obtain": {
43+
"url": "https://app.axiom.co/settings/api-tokens",
44+
"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-)",
45+
"button_label": "Create Token"
46+
}
47+
},
48+
{
49+
"id": "AXIOM_ORG_ID",
50+
"label": "Axiom Organization ID",
51+
"description": "Your Axiom organization ID, found in Settings.",
52+
"type": "text",
53+
"required": true,
54+
"secret": false,
55+
"placeholder": "my-org-id",
56+
"obtain": {
57+
"url": "https://app.axiom.co/settings",
58+
"instructions": "1. Go to app.axiom.co > Settings\n2. Copy your Organization ID",
59+
"button_label": "Get Org ID"
60+
}
61+
}
62+
]
63+
}
64+
},
65+
"auth": {
66+
"type": "api_key",
67+
"instructions": "Create an API token at https://app.axiom.co/settings/api-tokens"
68+
},
69+
"contributor": {
70+
"name": "ThetaBird",
71+
"github": "ThetaBird",
72+
"url": "https://github.com/ThetaBird"
73+
},
74+
"links": {
75+
"repository": "https://github.com/ThetaBird/mcp-server-axiom-js",
76+
"homepage": "https://axiom.co",
77+
"documentation": "https://axiom.co/docs"
78+
},
79+
"platforms": [
80+
"all"
81+
],
82+
"capabilities": {
83+
"tools": true,
84+
"resources": false,
85+
"prompts": false,
86+
"read_only_mode": false
87+
}
88+
}

0 commit comments

Comments
 (0)