kaggle-leaderboard
View and analyze competition leaderboard and submissions using Kaggle MCP. Use when checking rankings, scores, or submission history.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
View and analyze competition leaderboard and submissions using Kaggle MCP. Use when checking rankings, scores, or submission history.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Get competition metadata, data files, and rules using Kaggle MCP. Use when looking up competition details, searching competitions, or fetching competition data file info.
Search, download, and manage Kaggle datasets using Kaggle MCP. Use when finding datasets, checking file structures, or downloading data.
Browse and search Kaggle discussion forums using Kaggle MCP. Use when looking for tips, solutions, or community insights about competitions or datasets.
Search, view, save, and run Kaggle notebooks using Kaggle MCP. Use when exploring public notebooks, pushing code to Kaggle, or managing notebook sessions.
Submit to a Kaggle competition (code/notebook submission or file upload). Use when submitting predictions or notebooks to a competition.
Initialize project and set up competition environment (all-in-one). Use when starting a new Kaggle/atmaCup competition project or when user invokes /setup.
| name | kaggle-leaderboard |
| description | View and analyze competition leaderboard and submissions using Kaggle MCP. Use when checking rankings, scores, or submission history. |
| argument-hint | ["competition-name"] |
View competition leaderboard and submission history using the Kaggle MCP server.
Target Competition: $ARGUMENTS
Use mcp__kaggle__get_competition_leaderboard:
mcp__kaggle__get_competition_leaderboard({
request: {
competitionName: "<competition-name>",
hasPageSize: true,
pageSize: 20
}
})
To force public leaderboard (even if private is available):
mcp__kaggle__get_competition_leaderboard({
request: {
competitionName: "<competition-name>",
hasOverridePublic: true,
overridePublic: true,
hasPageSize: true,
pageSize: 20
}
})
For full analysis:
mcp__kaggle__download_competition_leaderboard({
request: { competitionName: "<competition-name>" }
})
List submissions:
mcp__kaggle__search_competition_submissions({
request: {
competitionName: "<competition-name>",
group: "All",
sortBy: "Date",
hasPageSize: true,
pageSize: 20
}
})
Filter options:
All, Successful, SelectedDate, Name, PublicScore, PrivateScoremcp__kaggle__get_competition_submission({
request: { ref: <submission-id> }
})
Returns: public_score, private_score, status, date, description, error_description.
Leaderboard Top N:
| Rank | Team | Score |
|---|---|---|
| 1 | ... | ... |
Own Submissions:
| Date | Description | Public Score | Status |
|---|---|---|---|
| ... | ... | ... | ... |
COMPLETE, ERROR, CANCELLED, STUCK, NONEpageToken) for large leaderboards