Skip to content

mcp company firmographic enricher for VS Code

com.mambabuilt/mcp-company-firmographic-enricher

Enrich a company domain into firmographics via Apify: employees, industry, HQ, revenue, logo, age.

client:VS Code transport:stdio runtime:npm

Install mcp company firmographic enricher in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apify-token",
      "description": "APIFY_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "mcp-company-firmographic-enricher": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@mambalabsdev/mcp-company-firmographic-enricher"
      ],
      "env": {
        "APIFY_TOKEN": "${input:apify-token}"
      }
    }
  }
}

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

mcp company firmographic enricher in other clients