AppSignal MCP Server for AI Agents

The AppSignal MCP server is currently in beta. Join our Discord community to help test and shape this implementation.

Model Context Protocol (MCP) enables AI agents like Claude, Gemini, OpenAI, Cursor, Zed, and others to interact with external tools and data sources. AppSignal's MCP server provides AI agents with access to AppSignal's monitoring data, metrics, and tools.

The server is also available as a Docker image on GitHub for setups that require a local MCP server.

Requirements

Before using the AppSignal MCP server, make sure you have:

AppSignal does not currently provide an OAuth flow for MCP authentication. You will need to generate an MCP token in your

AppSignal account settings

.

Configuration

Configure the AppSignal MCP server in your AI agent's settings using the HTTP endpoint below. Here's how to set it up for different agents.

Claude Code

Run the following command:

Shell
claude mcp add --transport http appsignal https://appsignal.com/api/mcp \ --header "Authorization: Bearer your-mcp-token"

Cursor

Edit ~/.cursor/mcp.json:

JSON
{ "mcpServers": { "appsignal": { "url": "https://appsignal.com/api/mcp", "headers": { "Authorization": "Bearer your-mcp-token" } } } }

Windsurf

Edit ~/.codeium/windsurf/mcp_config.json:

JSON
{ "mcpServers": { "appsignal": { "serverUrl": "https://appsignal.com/api/mcp", "headers": { "Authorization": "Bearer your-mcp-token" } } } }

Zed

Open your Zed settings file and add the context_servers section:

JSON
{ "context_servers": { "appsignal": { "settings": {}, "enabled": true, "url": "https://appsignal.com/api/mcp", "headers": { "Authorization": "Bearer your-mcp-token" } } } }

VSCode

If you are running GitHub Copilot, and are signed in under a company account, make sure to set "MCP servers in Copilot" to "Enabled" under your organization settings > Copilot > Policies.

GitHub Copilot settings

Add this config to your .vscode/mcp.json settings:

JSON
{ "inputs": [ { "type": "promptString", "id": "appsignal_mcp_token", "description": "AppSignal MCP Token", "password": true } ], "servers": { "appsignal": { "type": "http", "url": "https://appsignal.com/api/mcp", "headers": { "Authorization": "Bearer ${input:appsignal_mcp_token}" } } } }

Getting Help

We encourage you to join our Discord community where you can:

  • Get help with MCP server setup
  • Share feedback and suggestions
  • Connect with other developers using AppSignal MCP
  • Stay updated on new features and improvements

Look for the dedicated #mcp channel where our team actively monitors and responds to questions.