Skip to content
VS Code

mcp observability server for VS Code

io.github.gagandeeppra/mcp-observability-server

MCP server for querying logs from observability platforms with unified search and tracing

client:VS Code transport:stdio runtime:pypi

Install mcp observability server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "new-relic-api-key",
      "description": "NEW_RELIC_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "new-relic-account-id",
      "description": "NEW_RELIC_ACCOUNT_ID",
      "password": true
    }
  ],
  "servers": {
    "mcp-observability-server": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-observability-server"
      ],
      "env": {
        "NEW_RELIC_API_KEY": "${input:new-relic-api-key}",
        "NEW_RELIC_ACCOUNT_ID": "${input:new-relic-account-id}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp observability server in other clients