MCP Server for Axiom
@ThetaBird
关于 MCP Server for Axiom
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 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
queryApltool to execute APL queries - Provides
listDatasetstool 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).
其他 分类下的更多 MCP 服务器
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
MCP Toolbox for Databases
googleapisMCP Toolbox for Databases is an open source MCP server for databases.
XcodeBuildMCP
cameroncookeA Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
AutoBrowser MCP
autobrowser-aiBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
FastMCP v2 🚀
jlowin🚀 The fast, Pythonic way to build MCP servers and clients.
评论