appsignal for VS Code
com.pulsemcp/appsignal
MCP server for AppSignal — get alert details, search logs, and retrieve logs within time ranges.
client:VS Code
transport:stdio
runtime:npm
Install appsignal in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "appsignal-api-key",
"description": "APPSIGNAL_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "appsignal-app-id",
"description": "APPSIGNAL_APP_ID",
"password": true
}
],
"servers": {
"appsignal": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"appsignal-mcp-server"
],
"env": {
"APPSIGNAL_API_KEY": "${input:appsignal-api-key}",
"APPSIGNAL_APP_ID": "${input:appsignal-app-id}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs