Skip to content
VS Code

QuickerSpot MCP Server for VS Code

io.github.raphaelinacio/quickerspot-mcp

Servidor MCP do QuickerSpot para vinhetas, rádio indoor e sonorização comercial com IA.

client:VS Code transport:stdio runtime:pypi

Install QuickerSpot MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "quickerspot-api-key",
      "description": "QUICKERSPOT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "quickerspot-api-url",
      "description": "QUICKERSPOT_API_URL",
      "password": true
    }
  ],
  "servers": {
    "quickerspot-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "quickerspot-mcp"
      ],
      "env": {
        "QUICKERSPOT_API_KEY": "${input:quickerspot-api-key}",
        "QUICKERSPOT_API_URL": "${input:quickerspot-api-url}"
      }
    }
  }
}

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

QuickerSpot MCP Server in other clients