Skip to content
VS Code

foxhound for VS Code

io.github.caleb-love/foxhound

MCP server for querying Foxhound traces from Claude Code, Cursor, and other MCP clients

client:VS Code transport:stdio runtime:npm

Install foxhound in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "foxhound-api-key",
      "description": "FOXHOUND_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "foxhound-endpoint",
      "description": "FOXHOUND_ENDPOINT",
      "password": true
    }
  ],
  "servers": {
    "foxhound": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@foxhound-ai/mcp-server"
      ],
      "env": {
        "FOXHOUND_API_KEY": "${input:foxhound-api-key}",
        "FOXHOUND_ENDPOINT": "${input:foxhound-endpoint}"
      }
    }
  }
}

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

foxhound in other clients