runframe mcp server for VS Code
io.github.runframe/runframe-mcp-server
MCP server for Runframe incident management covering incidents, on-call, postmortems, and more.
client:VS Code
transport:stdio
runtime:npm
Install runframe mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "runframe-api-key",
"description": "RUNFRAME_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "runframe-api-url",
"description": "RUNFRAME_API_URL",
"password": true
}
],
"servers": {
"runframe-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@runframe/mcp-server"
],
"env": {
"RUNFRAME_API_KEY": "${input:runframe-api-key}",
"RUNFRAME_API_URL": "${input:runframe-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs