mcp-server-axiom-js
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PORT | No | Server port | 3000 |
| AXIOM_URL | No | Custom Axiom API URL | https://api.axiom.co |
| AXIOM_TOKEN | Yes | Your Axiom API token | |
| AXIOM_ORG_ID | Yes | Your Axiom organization ID | |
| AXIOM_QUERY_RATE | No | Queries per second limit | 1 |
| AXIOM_QUERY_BURST | No | Query burst capacity | 1 |
| AXIOM_DATASETS_RATE | No | Dataset list operations per second | 1 |
| AXIOM_DATASETS_BURST | No | Dataset list burst capacity | 1 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| queryAplA | Instructions
ExamplesBasic:
Aggregations:
Search & Parse:
Data Shaping:
Advanced:
Time Operations:
String Operations:
Common Patterns:
|
| listDatasetsB | List all available Axiom datasets |
| getDatasetInfoAndSchemaC | Get dataset info and schema |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
The three tools have clearly distinct purposes: listDatasets enumerates available datasets, getDatasetInfoAndSchema retrieves metadata and structure for a specific dataset, and queryApl executes analytical queries. There is no overlap in functionality, making it easy for an agent to select the appropriate tool.
Two tools (listDatasets, getDatasetInfoAndSchema) follow a consistent verb_noun pattern with camelCase, while queryApl uses a different verb style and abbreviation. The deviation is minor, as the naming remains readable and the tools are clearly related to Axiom datasets.
With three tools, this server is well-scoped for its purpose of interacting with Axiom datasets. Each tool serves a distinct and essential function: listing, inspecting, and querying datasets, which covers the core workflows without unnecessary complexity.
The tool surface provides comprehensive coverage for dataset exploration and querying, including listing, metadata retrieval, and advanced querying with APL. A minor gap exists in dataset management operations (e.g., create, update, delete datasets), but the provided tools enable effective data analysis within existing datasets.