{"id":26641114,"url":"https://github.com/dexhunter/kaggle-mcp","last_synced_at":"2026-04-29T16:35:34.552Z","repository":{"id":283764964,"uuid":"952024739","full_name":"dexhunter/kaggle-mcp","owner":"dexhunter","description":"mcp server for kaggle apis","archived":false,"fork":false,"pushed_at":"2025-03-22T02:30:16.000Z","size":64,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-07T22:43:57.663Z","etag":null,"topics":["kaggle","mcp"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dexhunter.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-20T16:01:44.000Z","updated_at":"2025-03-22T02:44:55.000Z","dependencies_parsed_at":"2025-03-22T03:33:00.365Z","dependency_job_id":null,"html_url":"https://github.com/dexhunter/kaggle-mcp","commit_stats":null,"previous_names":["dexhunter/kaggle-mcp"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/dexhunter/kaggle-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dexhunter%2Fkaggle-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dexhunter%2Fkaggle-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dexhunter%2Fkaggle-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dexhunter%2Fkaggle-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dexhunter","download_url":"https://codeload.github.com/dexhunter/kaggle-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dexhunter%2Fkaggle-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32435108,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T13:34:34.882Z","status":"ssl_error","status_checked_at":"2026-04-29T13:34:29.830Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["kaggle","mcp"],"created_at":"2025-03-24T18:19:47.085Z","updated_at":"2026-04-29T16:35:34.538Z","avatar_url":"https://github.com/dexhunter.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# kaggle-mcp MCP server\n\nA MCP server for Kaggle Apis\n\n## Components\n\n### Tools\n\nThe server implements one tool:\n- add-note: Adds a new note to the server\n  - Takes \"name\" and \"content\" as required string arguments\n  - Updates server state and notifies clients of resource changes\n\n## Configuration\n\nEnsure that you have downloaded your Kaggle credentials\n(`kaggle.json`) and placed it in the `~/.kaggle/` directory (this is the default\nlocation where the Kaggle API looks for your credentials)\n\nOtherwise you can add the env `KAGGLE_USERNAME` and `KAGGLE_KEY` to the mcp config\n\n## Quickstart\n\n### Install\n\n#### Claude Desktop\n\nOn MacOS: `~/Library/Application\\ Support/Claude/claude_desktop_config.json`\nOn Windows: `%APPDATA%/Claude/claude_desktop_config.json`\n\n\u003cdetails\u003e\n  \u003csummary\u003eDevelopment/Unpublished Servers Configuration\u003c/summary\u003e\n  ```\n  \"mcpServers\": {\n    \"kaggle-mcp\": {\n      \"command\": \"uv\",\n      \"args\": [\n        \"--directory\",\n        \"/Users/{username}/Work/kaggle-mcp\",\n        \"run\",\n        \"kaggle-mcp\"\n      ]\n    }\n  }\n  ```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003ePublished Servers Configuration\u003c/summary\u003e\n  ```\n  \"mcpServers\": {\n    \"kaggle-mcp\": {\n      \"command\": \"uvx\",\n      \"args\": [\n        \"kaggle-mcp\"\n      ]\n    }\n  }\n  ```\n\u003c/details\u003e\n\n## Development\n\n### Building and Publishing\n\nTo prepare the package for distribution:\n\n1. Sync dependencies and update lockfile:\n```bash\nuv sync\n```\n\n2. Build package distributions:\n```bash\nuv build\n```\n\nThis will create source and wheel distributions in the `dist/` directory.\n\n3. Publish to PyPI:\n```bash\nuv publish\n```\n\nNote: You'll need to set PyPI credentials via environment variables or command flags:\n- Token: `--token` or `UV_PUBLISH_TOKEN`\n- Or username/password: `--username`/`UV_PUBLISH_USERNAME` and `--password`/`UV_PUBLISH_PASSWORD`\n\n### Debugging\n\nSince MCP servers run over stdio, debugging can be challenging. For the best debugging\nexperience, we strongly recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector).\n\n\nYou can launch the MCP Inspector via [`npm`](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) with this command:\n\n```bash\nnpx @modelcontextprotocol/inspector uv --directory /Users/{username}/Work/kaggle-mcp run kaggle-mcp\n```\n\n\nUpon launching, the Inspector will display a URL that you can access in your browser to begin debugging.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdexhunter%2Fkaggle-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdexhunter%2Fkaggle-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdexhunter%2Fkaggle-mcp/lists"}