Skip to content

Commit 9e6a969

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for AXIOM_TOKEN)
1 parent f67afcc commit 9e6a969

1 file changed

Lines changed: 20 additions & 11 deletions

File tree

servers/community.axiom.json

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,25 @@
66
"description": "Query and manage Axiom datasets for log analysis and observability. Execute APL queries, list datasets, and ingest events.",
77
"icon": "https://avatars.githubusercontent.com/u/21122348?v=4",
88
"schema_version": "2.1",
9-
"categories": ["monitoring", "database"],
10-
"tags": ["axiom", "logs", "observability", "analytics", "apl", "datasets"],
11-
9+
"categories": [
10+
"monitoring",
11+
"database"
12+
],
13+
"tags": [
14+
"axiom",
15+
"logs",
16+
"observability",
17+
"analytics",
18+
"apl",
19+
"datasets"
20+
],
1221
"transport": {
1322
"type": "stdio",
1423
"command": "npx",
15-
"args": ["-y", "mcp-server-axiom"],
24+
"args": [
25+
"-y",
26+
"mcp-server-axiom"
27+
],
1628
"env": {
1729
"AXIOM_TOKEN": "${input:AXIOM_TOKEN}",
1830
"AXIOM_ORG_ID": "${input:AXIOM_ORG_ID}"
@@ -23,7 +35,7 @@
2335
"id": "AXIOM_TOKEN",
2436
"label": "Axiom API Token",
2537
"description": "API token for the Axiom API. Use an Advanced token for query and dataset access.",
26-
"type": "password",
38+
"type": "text",
2739
"required": true,
2840
"secret": true,
2941
"placeholder": "xapt-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
@@ -50,26 +62,23 @@
5062
]
5163
}
5264
},
53-
5465
"auth": {
5566
"type": "api_key",
5667
"instructions": "Create an API token at https://app.axiom.co/settings/api-tokens"
5768
},
58-
5969
"contributor": {
6070
"name": "ThetaBird",
6171
"github": "ThetaBird",
6272
"url": "https://github.com/ThetaBird"
6373
},
64-
6574
"links": {
6675
"repository": "https://github.com/ThetaBird/mcp-server-axiom-js",
6776
"homepage": "https://axiom.co",
6877
"documentation": "https://axiom.co/docs"
6978
},
70-
71-
"platforms": ["all"],
72-
79+
"platforms": [
80+
"all"
81+
],
7382
"capabilities": {
7483
"tools": true,
7584
"resources": false,

0 commit comments

Comments
 (0)