Connects to AppSignal's GraphQL API to fetch and analyze incident information, allowing users to list incidents, get incident details, retrieve error samples, and obtain AI-generated analysis and fix suggestions for application errors.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AppSignal MCP Servershow me the latest incident"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-appsignal
An MCP (Model Context Protocol) server for connecting to AppSignal and fetching incident information.
Installation
npm install -g mcp-appsignalRelated MCP server: Database MCP Server
Usage
Command Line
# Set environment variables
export APPSIGNAL_API_TOKEN=your-api-token
export APPSIGNAL_APP_ID=your-app-id
# Run the server
mcp-appsignalWith Cursor
Add to your Cursor settings:
{
"mcp": {
"servers": {
"appsignal": {
"command": "npx",
"args": ["mcp-appsignal"],
"env": {
"APPSIGNAL_API_TOKEN": "your-api-token",
"APPSIGNAL_APP_ID": "your-app-id"
}
}
}
}
}Features
Connect to AppSignal's GraphQL API
Fetch incident details and samples
List and search incidents
Provide prompts for analyzing incidents and suggesting fixes
MCP Resources
appsignal://incident/{incidentNumber}- Get details about a specific incidentappsignal://incident/{incidentNumber}/sample/{sampleId?}- Get a sample for a specific incidentappsignal://incidents- List all incidents
MCP Tools
getIncident- Fetch an incident by numbergetIncidentSample- Fetch a sample for a specific incidentlistIncidents- List incidents with optional filtering
MCP Prompts
analyzeIncident- Analyze an incident and provide insightssuggestFixes- Suggest fixes for an error
License
MIT