Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A remote MCP server on Cloudflare Workers that proxies tool calls to the Kaggle API, enabling running Python/R code on Kaggle's free GPU/TPU infrastructure from any MCP client.

README.md

kaggle-mcp-proxy

A remote MCP server on Cloudflare Workers that proxies tool calls to the Kaggle API. Connect from claude.ai (or any MCP client) and run Python/R code on Kaggle's free GPU/TPU infrastructure.

Tools

| Tool | Description | |------|-------------| | kaggle_kernel_push | Create/update a kernel and start execution | | kaggle_kernel_status | Check execution status (queued/running/complete/error) | | kaggle_kernel_output | Get execution output (files + log). The log field is only populated after the kernel reaches complete/error; while queued/running it is empty. Kaggle's public REST API does not expose live execution logs (the official kaggle CLI has the same limitation). Poll kaggle_kernel_status until completion. | | kaggle_kernels_list | Search kernels | | kaggle_accelerators_list | Fetch the current list of accelerator (machineShape) values Kaggle accepts, live from kaggle-cli docs | | kaggle_run | Push code, wait for completion, return output (all-in-one) | | kaggle_datasets_list | Search datasets | | kaggle_dataset_create | Create a new dataset and upload files inline (text or base64) | | kaggle_dataset_version | Upload a new version of an existing dataset | | kaggle_dataset_status | Check processing status of a dataset | | kaggle_dataset_files_list | List files (name, size, columns) inside a dataset | | kaggle_dataset_download_url | Resolve a dataset (or single file) to a temporary signed GCS download URL — no bytes pass through the worker | | kaggle_competitions_list | Search competitions |

Uploading training data

kaggle_dataset_create and kaggle_dataset_version accept files inline:

{
  "slug": "my-training-data",
  "title": "My Training Data",
  "files": [
    { "name": "train.csv", "content": "id,label\n1,0\n2,1\n", "content_type": "text/csv" },
    { "name": "weights.bin", "content": "<base64...>", "encoding": "base64" }
  ]
}

Each file is uploaded via Kaggle's blob protocol (POST /blobs/uploadPUT createUrl), then attached when the dataset (or new version) is finalized. Because content is sent inline through the MCP request, total payload size is bounded by Cloudflare Workers' request limits (100 MB on paid plans). For larger uploads, use the official kaggle CLI directly.

GPU/TPU Accelerators

The accelerator parameter on kaggle_kernel_push / kaggle_run is a free-form string that maps 1:1 to Kaggle's machineShape API field. Pass "none" for CPU-only.

To see what Kaggle currently accepts (the list changes over time as new GPUs ship), call kaggle_accelerators_list — it fetches the canonical list live from Kaggle/kaggle-cli docs/kernels.md so no proxy redeploy is required when Kaggle adds or removes a shape.

Common shape names at the time of writing: NvidiaTeslaP100, NvidiaTeslaT4, NvidiaTeslaT4Highmem, Tpu1VmV38, TpuV6E8. Several others (A100, L4, H100, RTX Pro 6000, etc.) exist but are restricted to specific competitions or admins; Kaggle will reject the push if your account is not eligible.

Note: Kaggle removed NvidiaTeslaT4x2 from the public API. NvidiaTeslaT4Highmem is the current higher-resource T4 option.

Kaggle provides 30 hours/week of free GPU time.

Setup

Prerequisites

  • Cloudflare account with Workers enabled
  • GitHub account (used as OAuth provider for MCP auth)
  • Kaggle account with API token

1. Clone and install

git clone https://github.com/penta2himajin/kaggle-mcp-proxy.git
cd kaggle-mcp-proxy
npm install

2. Create KV namespace

npx wrangler kv namespace create OAUTH_KV
# Update wrangler.jsonc with the returned ID

3. Create GitHub OAuth App

Go to https://github.com/settings/developers → New OAuth App:

  • Homepage URL: https://<your-worker>.workers.dev
  • Callback URL: https://<your-worker>.workers.dev/callback

4. Get Kaggle API token

Go to https://www.kaggle.com/settings → API → Create New API Token.

5. Set secrets and deploy

npx wrangler secret put GITHUB_CLIENT_ID
npx wrangler secret put GITHUB_CLIENT_SECRET
npx wrangler secret put COOKIE_ENCRYPTION_KEY    # any random string
npx wrangler secret put ALLOWED_USERS             # comma-separated GitHub usernames (optional)
npx wrangler secret put KAGGLE_USERNAME            # your Kaggle username
npx wrangler secret put KAGGLE_KEY                 # your Kaggle API token (KGAT_... or legacy key)

npm run deploy

6. Connect from claude.ai

  1. Settings → Connectors → Add custom connector
  2. Remote MCP server URL: https://<your-worker>.workers.dev/mcp
  3. Leave OAuth fields empty (Dynamic Client Registration is supported)
  4. Authenticate with GitHub

Environment Variables (Secrets)

| Name | Required | Description | |------|----------|-------------| | GITHUB_CLIENT_ID | Yes | GitHub OAuth App client ID | | GITHUB_CLIENT_SECRET | Yes | GitHub OAuth App client secret | | COOKIE_ENCRYPTION_KEY | Yes | Random string for cookie signing | | ALLOWED_USERS | No | Comma-separated GitHub usernames | | KAGGLE_USERNAME | Yes | Kaggle account username | | KAGGLE_KEY | Yes | Kaggle API token |

Platform compatibility

This project is built for Cloudflare Workers and tested on that platform. It may work on other MCP-compatible platforms with modifications, but no guarantees are provided.

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Cloud & DevOps servers.