Overview
The mcp-server-axiom is a Zed extension designed for the Axiom MCP server, enabling users to configure and manage their Axiom server settings easily.
To use mcp-server-axiom, create a config.txt file containing your Axiom API token and specify its path in your Zed settings.json file under context_servers.
- Easy configuration of Axiom MCP server settings - Integration with Zed environment - Support for Axiom API token management
- Configuring Axiom server for data management tasks.
- Integrating Axiom with Zed for enhanced development workflows.
- Managing API tokens securely for Axiom services.
Add to your AI client
Use these steps to connect Axiom MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-axiom-zed-extensions": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-axiom-zed-extensions"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-axiom-zed-extensions": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-axiom-zed-extensions"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-axiom-zed-extensions": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-axiom-zed-extensions"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-axiom-zed-extensions": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-axiom-zed-extensions"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-axiom-zed-extensions": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-axiom-zed-extensions"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-axiom-zed-extensions": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-axiom-zed-extensions"
]
}
}
}FAQ
What is the purpose of the config.txt file?
The config.txt file is used to store your Axiom API token and other configuration settings for the MCP server.
Is mcp-server-axiom free to use?
Yes! mcp-server-axiom is open-source and free to use under the Apache-2.0 license.
What programming language is mcp-server-axiom written in?
mcp-server-axiom is written in Rust.