
AppSignal
STDIOAppSignal monitoring integration for accessing alerts, errors, and logs within MCP clients.
AppSignal monitoring integration for accessing alerts, errors, and logs within MCP clients.
Haven't heard about MCP yet? The easiest way to keep up-to-date is to read our weekly newsletter at PulseMCP.
This is an MCP (Model Context Protocol) Server integrating MCP Clients with AppSignal's application performance monitoring and error tracking capabilities: get alert details, search logs, and retrieve logs within specific time ranges.
AppSignal is a comprehensive APM (Application Performance Monitoring) solution that helps developers monitor their applications' performance, track errors, and debug issues. This server connects directly to their REST API. You will need to sign up for an API Key from AppSignal to get started.
This project is NOT officially affiliated with AppSignal.
Real-time monitoring integration: Access your application's alerts, errors, and logs directly within Claude or other MCP clients, enabling seamless debugging and monitoring workflows.
Powerful log searching: Search through your application logs with flexible query options, making it easy to find specific issues or patterns.
Time-based log retrieval: Retrieve logs within specific datetime ranges for focused analysis of incidents or debugging time-sensitive issues.
Zero context switching: No need to leave your conversation to check alerts or search logs - everything is integrated directly into your MCP client.
This server is built and tested on macOS with Claude Desktop. It should work with other MCP clients as well.
Tool Name | Description |
---|---|
get_apps | Get a list of all available AppSignal applications. |
select_app_id | Select an AppSignal application ID to use for subsequent operations. |
get_exception_incident | Get detailed information about a specific exception incident. |
get_exception_incident_sample | Get a sample occurrence of a specific exception incident. |
get_log_incident | Get detailed information about a specific log incident. |
get_anomaly_incident | Get detailed information about a specific anomaly incident. |
search_logs | Search through application logs with flexible query parameters and filters. |
get_log_incidents | Get a list of log incidents with optional state filter (OPEN, CLOSED, WIP). |
get_exception_incidents | Get a list of exception incidents with optional state filter (OPEN, CLOSED, WIP). |
get_anomaly_incidents | Get a list of anomaly incidents with optional state filter (OPEN, CLOSED, WIP). |
get_log_incidents
, get_exception_incidents
, get_anomaly_incidents
) support filtering by state:
This project uses Vitest for unit testing. Tests are automatically run on pull requests and pushes to the main branch.
# Install dependencies npm run install-all # Run tests once npm run test:run # Run tests in watch mode (recommended for development) npm test # Run tests with UI npm run test:ui
Tests are located in the tests/
directory:
tests/functional/
- Functional tests for individual componentstests/integration/
- Integration tests with mocked AppSignal APItests/manual/
- Manual tests that hit the real AppSignal API (not run in CI)tests/mocks/
- Mock implementations and test dataSee tests/README.md
for more details on the testing approach.
Manual tests are end-to-end system tests that verify the complete integration with the real AppSignal API. These tests:
The manual test suite follows this workflow:
To run manual tests:
# Copy .env.example to .env and add your API key cp .env.example .env # Edit .env to add your real API key # Run manual tests npm run test:manual # Run manual tests in watch mode npm run test:manual:watch
Test Outcomes:
The tests automatically adapt to your AppSignal data and API limitations.
nvm use
if you have nvm installed)Environment Variable | Description | Required | Default Value | Example |
---|---|---|---|---|
APPSIGNAL_API_KEY | Your AppSignal API key. Get one at appsignal.com | Y | N/A | your-api-key-here |
APPSIGNAL_APP_ID | Your AppSignal application ID | N | N/A | 5f3e4d2c1b0a9f8e7d6c5b4a |
Make sure you have an API key from AppSignal and your application ID ready.
Then proceed to your preferred method of configuring the server below. If this is your first time using MCP Servers, you'll want to make sure you have the Claude Desktop application and follow the official MCP setup instructions.
You're going to need Node working on your machine so you can run npx
commands in your terminal. If you don't have Node, you can install it from nodejs.org.
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Modify your claude_desktop_config.json
file to add the following:
{ "mcpServers": { "appsignal": { "command": "npx", "args": ["-y", "appsignal-mcp-server"], "env": { "APPSIGNAL_API_KEY": "your-api-key-here" } } } }
Restart Claude Desktop and you should be ready to go!