Skip to content
VS Code

uk business intelligence for VS Code

io.github.fluke-studio/uk-business-intelligence

Enrich any UK business with Companies House, Google Places, DNS, and social data.

client:VS Code transport:stdio runtime:npm

Install uk business intelligence in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "supabase-url",
      "description": "SUPABASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "supabase-service-role-key",
      "description": "SUPABASE_SERVICE_ROLE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "companies-house-api-key",
      "description": "COMPANIES_HOUSE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-places-api-key",
      "description": "GOOGLE_PLACES_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "uk-business-intelligence": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "uk-business-intelligence-mcp"
      ],
      "env": {
        "SUPABASE_URL": "${input:supabase-url}",
        "SUPABASE_SERVICE_ROLE_KEY": "${input:supabase-service-role-key}",
        "COMPANIES_HOUSE_API_KEY": "${input:companies-house-api-key}",
        "GOOGLE_PLACES_API_KEY": "${input:google-places-api-key}"
      }
    }
  }
}

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

uk business intelligence in other clients