Skip to content
VS Code

pulse subregistry for VS Code

com.pulsemcp/pulse-subregistry

MCP server providing access to the PulseMCP Sub-Registry for browsing and discovering MCP servers.

client:VS Code transport:stdio runtime:npm

Install pulse subregistry in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pulsemcp-subregistry-api-key",
      "description": "PULSEMCP_SUBREGISTRY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pulsemcp-subregistry-tenant-id",
      "description": "PULSEMCP_SUBREGISTRY_TENANT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "show-admin-tools",
      "description": "SHOW_ADMIN_TOOLS",
      "password": true
    }
  ],
  "servers": {
    "pulse-subregistry": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@pulsemcp/pulse-subregistry"
      ],
      "env": {
        "PULSEMCP_SUBREGISTRY_API_KEY": "${input:pulsemcp-subregistry-api-key}",
        "PULSEMCP_SUBREGISTRY_TENANT_ID": "${input:pulsemcp-subregistry-tenant-id}",
        "SHOW_ADMIN_TOOLS": "${input:show-admin-tools}"
      }
    }
  }
}

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

pulse subregistry in other clients