Skip to content
VS Code

molecare mcp for VS Code

io.github.molecare/molecare-mcp

Educational dermatology knowledge and mole tracking. No credentials needed. Not a medical device.

client:VS Code transport:stdio runtime:npm

Install molecare mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "molecare-api-url",
      "description": "MOLECARE_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "molecare-api-key",
      "description": "MOLECARE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mlflow-tracking-uri",
      "description": "MLFLOW_TRACKING_URI",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aws-region",
      "description": "AWS_REGION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "molecare-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "molecare-mcp"
      ],
      "env": {
        "MOLECARE_API_URL": "${input:molecare-api-url}",
        "MOLECARE_API_KEY": "${input:molecare-api-key}",
        "MLFLOW_TRACKING_URI": "${input:mlflow-tracking-uri}",
        "AWS_REGION": "${input:aws-region}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

molecare mcp in other clients