Skip to content
VS Code

scala score for VS Code

io.github.alessandro114/scala-score

MCP server for S.C.A.L.A. Score API — let Claude, ChatGPT, and AI agents search 250M+ companies

client:VS Code transport:stdio runtime:npm

Install scala score in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "score-api-key",
      "description": "SCORE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "scala-score": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "scala-mcp-server"
      ],
      "env": {
        "SCORE_API_KEY": "${input:score-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

scala score in other clients