cf-mcp-orange
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_userA | Fetches a complete Codeforces profile in one call, returning:
|
| compare_userB | Compare two Codeforces users side-by-side. Returns a detailed comparison of ratings, titles, contest count, and problem solving breakdown (difficulty & category). |
| get_problemlistA | Search the entire Codeforces problemset and return up to 10 problems. Parameters:
Returns 10 problems with names, ratings, tags, and direct links. |
| get_problemA | Fetch the full problem statement, rating, and topics for a specific Codeforces problem. Provide the contest ID and the problem index (e.g., contest_id=4, index='A'). |
| get_practiceproblemsA | Analyzes a user's solved problems to identify their weakest topics. Recommends up to 3 practice problems within +300 rating of their current level. |
| get_random_practiceA | Ignore weaknesses and recommend a single, completely random Codeforces problem within +/- 300 rating of the user's current rating. Great for a fresh, challenging surprise! |
| get_upsolveB | Analyze the user's last 10 rated Codeforces contests. Recommends up to 2 unsolved problems per contest if:
|
| get_statusA | Fetch the last 1000 submissions of a user. Provides a summary of their AC/WA/TLE count, and details of their 20 most recent submissions. Great for debugging how a user is performing on their current attempts. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool has a clearly distinct purpose: user comparison, profile retrieval, submission history, problem details, problem search, and three distinct practice recommendation strategies (weakness-based, random, contest-upsolve). Descriptions are detailed enough to prevent confusion.
All tools follow verb_noun pattern in snake_case, with seven starting with 'get_' and one starting with 'compare_'. This slight inconsistency is minor but noticeable.
Eight tools cover the core needs for a Codeforces practice assistant without being overwhelming. Each tool serves a necessary function, and the count feels well-scoped.
The set covers user profiles, submissions, problem search, and multiple practice recommendations. Missing features like contest listing or editorial access are minor omissions given the focus on individual practice.