AppSignal MCP server

Integrates with AppSignal's monitoring platform to provide incident tracking, anomaly detection, performance monitoring, and log analysis with severity filtering and time-based queries for debugging production applications.
Back to servers
Setup instructions
Provider
PulseMCP
Release date
Jun 26, 2025
Language
Go
Stats
42 stars

This MCP server integrates with AppSignal's application performance monitoring capabilities, allowing you to access alerts, search logs, and monitor your applications directly from Claude or other MCP clients.

Installation

Prerequisites

  • Node.js v24.2.0 or later
  • An AppSignal API key (sign up at appsignal.com)

Setup with Claude Desktop

Method 1: Manual Configuration

  1. Ensure Node.js is installed on your system. If not, download it from nodejs.org

  2. Locate your Claude Desktop configuration file:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  3. Add the AppSignal MCP server configuration to your claude_desktop_config.json file:

{
  "mcpServers": {
    "appsignal": {
      "command": "npx",
      "args": ["-y", "appsignal-mcp-server"],
      "env": {
        "APPSIGNAL_API_KEY": "your-api-key-here"
      }
    }
  }
}
  1. Replace "your-api-key-here" with your actual AppSignal API key

  2. Restart Claude Desktop to apply the changes

Usage

Once installed, you can use the following tools to interact with AppSignal through your MCP client:

Available Tools

Tool Name Description
get_apps Lists all available AppSignal applications
select_app_id Select an application ID for subsequent operations
get_exception_incident Get details about a specific exception incident
get_exception_incident_sample Get a sample occurrence of a specific exception
get_log_incident Get details about a specific log incident
get_anomaly_incident Get details about a specific anomaly incident
search_logs Search application logs with flexible query parameters
get_log_incidents List log incidents with optional state filtering
get_exception_incidents List exception incidents with optional state filtering
get_anomaly_incidents List anomaly incidents with optional state filtering

Basic Workflow

  1. First, get a list of your applications:

    get_apps
    
  2. Select an application to work with:

    select_app_id app_id_from_the_list
    
  3. Now you can use any of the other tools to interact with that application.

Example: Searching Logs

To search for logs containing a specific error message:

search_logs error:"database connection failed"

Example: Viewing Incidents

To list all open exception incidents:

get_exception_incidents state:OPEN

Filtering Options for Incidents

When using get_log_incidents, get_exception_incidents, or get_anomaly_incidents, you can filter by state:

  • OPEN: Active incidents requiring attention
  • CLOSED: Resolved incidents
  • WIP: Work-in-progress incidents being investigated

If no state filter is provided, only OPEN incidents are returned by default.

Environment Variables

Variable Description Required Default
APPSIGNAL_API_KEY Your AppSignal API key Yes None
APPSIGNAL_APP_ID Your AppSignal application ID No None

How to install this MCP server

For Claude Code

To add this MCP server to Claude Code, run this command in your terminal:

claude mcp add-json "appsignal" '{"command":"npx","args":["-y","appsignal-mcp-server"],"env":{"APPSIGNAL_API_KEY":"your-api-key-here"}}'

See the official Claude Code MCP documentation for more details.

For Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "appsignal": {
            "command": "npx",
            "args": [
                "-y",
                "appsignal-mcp-server"
            ],
            "env": {
                "APPSIGNAL_API_KEY": "your-api-key-here"
            }
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

2. Add this to your configuration file:

{
    "mcpServers": {
        "appsignal": {
            "command": "npx",
            "args": [
                "-y",
                "appsignal-mcp-server"
            ],
            "env": {
                "APPSIGNAL_API_KEY": "your-api-key-here"
            }
        }
    }
}

3. Restart Claude Desktop for the changes to take effect

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later