Skip to content
VS Code

Kaggle mcp for VS Code

io.github.seif-sameh/kaggle-mcp

MCP server for the Kaggle API: competitions, datasets, kernels, and models.

client:VS Code transport:stdio runtime:pypi

Install Kaggle mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kaggle-username",
      "description": "KAGGLE_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kaggle-api-key",
      "description": "KAGGLE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "kaggle-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-server-kaggle"
      ],
      "env": {
        "KAGGLE_USERNAME": "${input:kaggle-username}",
        "KAGGLE_API_KEY": "${input:kaggle-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

Kaggle mcp in other clients