Skip to content
VS Code

mcp server for VS Code

com.stackscan/mcp-server

Look up the technology stack behind any domain, and the company running it.

client:VS Code transport:stdio runtime:npm

Install mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "stackscan-api-token",
      "description": "STACKSCAN_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "stackscan-tenant-id",
      "description": "STACKSCAN_TENANT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "stackscan-session-lookup-cap",
      "description": "STACKSCAN_SESSION_LOOKUP_CAP",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@stackscan/mcp-server"
      ],
      "env": {
        "STACKSCAN_API_TOKEN": "${input:stackscan-api-token}",
        "STACKSCAN_TENANT_ID": "${input:stackscan-tenant-id}",
        "STACKSCAN_SESSION_LOOKUP_CAP": "${input:stackscan-session-lookup-cap}"
      }
    }
  }
}

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

mcp server in other clients