MCP.so
ログイン

MCP Server for Axiom

@ThetaBird

MCP Server for Axiom について

概要はまだありません

基本情報

カテゴリ

その他

ライセンス

MIT

ランタイム

node

トランスポート

stdio

公開者

ThetaBird

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "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>"
      }
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is MCP Server for Axiom?

MCP Server for Axiom is a JavaScript port of the official Axiom MCP server that enables AI agents to query data using Axiom Processing Language (APL). It provides the same functionality as the original Go version but is packaged as an npm module for easier integration with Node.js environments.

How to use MCP Server for Axiom?

Install globally via npm (npm install -g mcp-server-axiom) or run directly with npx. Configure using environment variables (AXIOM_TOKEN, AXIOM_ORG_ID, optional AXIOM_URL, rate limits) or a JSON config file. Then start the server and call tools via HTTP endpoints.

Key features of MCP Server for Axiom

  • Provides queryApl tool to execute APL queries
  • Provides listDatasets tool to list available datasets
  • Configurable query and dataset‑list rate limiting
  • Supports environment variables or JSON config files
  • Runs via npx without prior installation
  • MIT licensed and open source

Use cases of MCP Server for Axiom

  • Enable an AI agent to query Axiom logs filtered by severity using APL
  • Let a chatbot list all available datasets in your Axiom organization
  • Integrate Axiom observability data into automated troubleshooting workflows
  • Build a custom MCP client that interacts with Axiom’s API through APL

FAQ from MCP Server for Axiom

What is APL?

APL stands for Axiom Processing Language, the query language used to search and analyze data stored in Axiom.

What credentials are required to use this server?

You must provide an Axiom API token (AXIOM_TOKEN) and your organization ID (AXIOM_ORG_ID). The API URL defaults to https://api.axiom.co but can be overridden with AXIOM_URL.

Can I control request rate limits?

Yes. Optional environment variables AXIOM_QUERY_RATE, AXIOM_QUERY_BURST, AXIOM_DATASETS_RATE, and AXIOM_DATASETS_BURST allow you to set per‑second limits and burst capacities.

How do I run the server locally?

Either export the required environment variables and run mcp-server-axiom, or provide a JSON config file: mcp-server-axiom config.json.

What endpoints does the server expose?

The server provides a GET /tools endpoint to list tools, and POST /tools/:name/call to invoke a specific tool (currently queryApl or listDatasets).

コメント

「その他」の他のコンテンツ