Skip to content
VS Code

MCP AEMPS — CIMA for VS Code

io.github.romanpert/mcp-aemps

MCP server for the Spanish AEMPS CIMA pharmaceutical registry (20,000+ authorised medicines).

client:VS Code transport:stdio runtime:pypi

Install MCP AEMPS — CIMA in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "port",
      "description": "PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "redis-url",
      "description": "REDIS_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-aemps": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-aemps"
      ],
      "env": {
        "PORT": "${input:port}",
        "LOG_LEVEL": "${input:log-level}",
        "REDIS_URL": "${input:redis-url}"
      }
    }
  }
}

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

MCP AEMPS — CIMA in other clients