codeforces-mcp
Provides access to Codeforces practice data, enabling tools to search problems by rating and tag, exclude solved problems for a handle, analyze tag performance, review recent submissions and verdicts, view user profiles and rating history, and list upcoming contests.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@codeforces-mcpFind 5 unsolved DP problems rated 1300-1500 for handle 3.141f"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
codeforces-mcp
An MCP server that gives coding agents access to Codeforces practice data. It helps you understand your weak tags and find problems you have not already solved.
The server is read-only, uses the public Codeforces API, and requires no Codeforces authentication. It works with VS Code Copilot, Claude Desktop/Code, and other MCP clients that support stdio servers.
Features
Find problems by rating and tag, optionally excluding a user's solved problems.
Rank a handle's tags by solve rate and average solved rating.
Review recent submissions and filter by verdict.
Inspect a user's profile and rating history.
List upcoming contests.
Return results as readable Markdown or structured JSON.
Cache upstream responses locally and enforce a polite request rate.
Related MCP server: DevAssist MCP Server
Requirements
Python 3.10 or newer
A Codeforces handle for user-specific tools
VS Code with GitHub Copilot Agent mode, Claude, or another MCP-compatible client
No API key is required.
Installation
Clone the repository and create a virtual environment:
git clone https://github.com/<owner>/codeforces-mcp.git
cd codeforces-mcp
python -m venv .venvActivate the environment:
# Windows PowerShell
.\.venv\Scripts\Activate.ps1# macOS/Linux
source .venv/bin/activateInstall the package:
python -m pip install -e .For development, install the test and lint dependencies too:
python -m pip install -e ".[dev]"The installation creates the codeforces-mcp command in the virtual environment.
Use With VS Code Copilot
The repository includes a workspace configuration at .vscode/mcp.json. On Windows,
it can point directly to the checked-out venv:
{
"servers": {
"codeforces": {
"type": "stdio",
"command": "E:\\path\\to\\codeforces-mcp\\.venv\\Scripts\\codeforces-mcp.exe"
}
}
}Replace the path with the actual location of your clone. For macOS/Linux, use:
{
"servers": {
"codeforces": {
"type": "stdio",
"command": "/path/to/codeforces-mcp/.venv/bin/codeforces-mcp"
}
}
}In VS Code:
Run
MCP: Open Workspace Folder Configurationfrom the Command Palette.Add or update the
codeforcesserver entry.Open Copilot Chat and switch to Agent mode.
Open the tools menu, start or enable the
codeforcesserver, and allow the tools.
Then ask Copilot something like:
Find me 5 unsolved DP problems rated 1300-1500 for handle
3.141f.
The server uses stdio, so VS Code starts and stops it as needed. Do not start a second copy manually while Copilot is connected.
Use With Claude
After activating the venv, register the command with Claude Code:
claude mcp add codeforces -- codeforces-mcpIf the command is not on your PATH, use the executable directly.
claude mcp add codeforces -- .\.venv\Scripts\codeforces-mcp.exeThe equivalent macOS/Linux command is:
claude mcp add codeforces -- .venv/bin/codeforces-mcpTools
All tools are read-only and support response_format, which is either "markdown"
(the default) or "json".
codeforces_search_problems
Find problems, easiest first. Set exclude_solved_by to hide problems whose verdict
for that handle is OK.
Parameter | Default | Description |
| none | Minimum rating, from 800 to 3500 |
| none | Maximum rating, from 800 to 3500 |
|
| Up to 10 Codeforces tags |
|
| Use |
| none | Codeforces handle whose solved problems are excluded |
|
| Number of results, from 1 to 100 |
|
| Number of matching results to skip |
|
|
|
Example request:
Find 5 unsolved dp problems rated 1300-1500 for 3.141f.Equivalent arguments:
{
"min_rating": 1300,
"max_rating": 1500,
"tags": ["dp"],
"exclude_solved_by": "3.141f",
"limit": 5
}codeforces_tag_performance
Compute per-tag attempts, solves, solve rate, and ratings for a handle. Results are
ordered from weakest solve rate first. min_attempted prevents very small samples
from dominating the ranking.
{
"handle": "3.141f",
"min_attempted": 8,
"response_format": "markdown"
}codeforces_recent_submissions
List a handle's newest submissions. Use verdict such as WRONG_ANSWER,
TIME_LIMIT_EXCEEDED, or OK to filter the list.
{
"handle": "3.141f",
"verdict": "WRONG_ANSWER",
"limit": 10
}codeforces_user_profile
Show a handle's current rating, maximum rating, rank, and organization.
{
"handle": "3.141f"
}codeforces_rating_history
Show contest-by-contest rating changes, oldest first. Set limit to return only the
most recent contests.
{
"handle": "3.141f",
"limit": 10
}codeforces_upcoming_contests
List contests that have not started yet, soonest first.
{
"limit": 5
}Output Example
**5 of 208 matching problems** (offset 0, more available)
| Rating | Problem | Tags | Link |
| --- | --- | --- | --- |
| 1300 | 189A - Cut Ribbon | brute force, dp | https://codeforces.com/problemset/problem/189/A |
| 1300 | 234C - Weather | dp, implementation | https://codeforces.com/problemset/problem/234/C |
| 1300 | 416B - Art Union | brute force, dp, implementation | https://codeforces.com/problemset/problem/416/B |The JSON format contains the same typed data for applications that need to process the result programmatically.
Cache and Rate Limits
The Codeforces API documents approximately one request every two seconds. The client
enforces a rate limit and stores responses in ~/.cache/codeforces-mcp by default.
Cache lifetimes reflect how often data changes: six hours for the problem set, five
minutes for submissions, and one hour for user profiles.
Troubleshooting
Server does not start
Check that the executable exists in the environment used by your MCP configuration:
Test-Path .\.venv\Scripts\codeforces-mcp.exe./.venv/bin/codeforces-mcpIf you installed into a different venv, update the command path in mcp.json.
Codeforces returns an error
Check the handle spelling and try again later. The server passes actionable Codeforces error comments through to the client. The public API can also be temporarily rate limited or unavailable.
Development
Run the deterministic checks before submitting a change:
ruff check .
mypy src/
pytest tests/contract -q
python eval/run_eval.pyLive tests call Codeforces and are opt-in:
pytest -m live -qRewrite Local Commit Dates
The repository includes rebase-commits-to-july.sh for rewriting all commits
on the current branch across 14 and 15 July 2026. It creates a backup branch before
changing history:
bash rebase-commits-to-july.shThe working tree must be clean, and the script must be run from a named branch. It rewrites commit IDs, so do not use it on a shared branch without coordination. To restore the original tip, use the backup branch printed by the script:
git reset --hard backup/pre-date-rebase-<timestamp>Read SPEC.md before changing tool behavior. It defines the contracts and acceptance criteria, and each criterion has a corresponding contract test.
Project Layout
Path | Purpose |
| HTTP client, caching, rate limiting |
| Typed input and output models |
| MCP-independent tool logic |
| MCP registration and formatting |
| Offline fixture-backed contract tests |
| Opt-in upstream drift tests |
| Agent behavior evaluation cases |
Contributing
Open an issue for a bug or proposed behavior change.
Update
SPEC.mdand its contract test before changing behavior.Keep tool logic in
src/codeforces_mcp/tools/free of MCP imports.Run the development checks and include relevant test output in the pull request.
Please avoid committing virtual environments, caches, build output, or API recordings
containing personal data. The repository .gitignore already excludes the local
development artifacts created by this project.
Related Documentation
SPEC.md - tool contracts and design decisions
docs/TECHNICAL-OVERVIEW.md - architecture and implementation details
Available Tools
6 toolscodeforces_rating_historyARead-onlyIdempotent
Contest-by-contest rating changes for a handle, oldest first, with deltas.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Return only the most recent N contests | |
| handle | Yes | Codeforces handle, e.g. '3.141f' | |
| response_format | No | 'markdown' for a readable table, 'json' for structured data | markdown |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering safety and idempotency. The description adds the ordering and delta details, which is useful but minimal. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence conveys the core purpose without wasted words. It efficiently conveys the resource, ordering, and the deltas detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one required parameter, full schema coverage, and an output schema, the description sufficiently explains the purpose. The only minor gap is that it doesn't describe return format specifics, but the output schema covers that need.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and all parameters (handle, limit, response_format) already have descriptions. The tool description does not add meaning beyond the schema, so the baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool fetches contest-by-contest rating changes for a given handle, specifies ordering (oldest first), and includes deltas. This distinguishes it from sibling tools like user_profile (overall rating) and recent_submissions (submissions).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not mention when not to use it, nor does it reference sibling tools. Users are left to infer suitable contexts from the purpose alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
codeforces_recent_submissionsARead-onlyIdempotent
List a handle's most recent submissions, newest first.
Filter by verdict to pull up recent failures for review. Each row links to the
submission on Codeforces so the code itself can be read.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum submissions to return | |
| handle | Yes | Codeforces handle, e.g. '3.141f' | |
| verdict | No | Filter by verdict, e.g. 'WRONG_ANSWER', 'TIME_LIMIT_EXCEEDED', 'OK' | |
| response_format | No | 'markdown' for a readable table, 'json' for structured data | markdown |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover read-only and non-destructive behavior. The description adds useful behavioral context: results are ordered newest first, and each row links to the submission on Codeforces so the code can be read. This goes beyond what annotations alone provide and contains no contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a tight two sentences with no redundant words. The primary purpose is front-loaded in the first sentence, and the second sentence adds a focused filtering tip and a detail about links to code. Each sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the 100% schema coverage, existing annotations, and presence of an output schema, the description fills the remaining gaps: ordering, the verdict filter use case, and the link-to-code behavior. An agent has everything needed to decide when to call and how to interpret results, though one could imagine explicit exclusion of sibling tools, which is not necessary here.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents all four parameters with clear descriptions (100% coverage), so the description does not need to explain them. It does add a practical tip for the 'verdict' parameter (using it to review failures), but adds nothing for 'limit' or 'response_format' beyond what the schema states. This matches the baseline for full schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb ('List') and resource ('a handle's most recent submissions') and specifies order ('newest first'). It is clearly distinct from sibling tools that deal with problems, ratings, contests, and user profiles, so an agent can differentiate without ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a concrete, actionable use case ('Filter by verdict to pull up recent failures for review') that tells an agent when this tool is appropriate. It does not explicitly mention alternatives or when not to use it, but the purpose is specific enough that no exclusions are necessary.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
codeforces_search_problemsARead-onlyIdempotent
Find Codeforces problems by rating band and tags, easiest first.
Set exclude_solved_by to a handle to hide problems that handle has already solved.
The Codeforces website cannot express that filter, which is the main reason to reach
for this tool: it turns "problems tagged dp rated 1300-1500" into "problems I could
actually still practise".
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Codeforces tags, e.g. ['dp','greedy']. Empty means any. | |
| limit | No | Maximum problems to return | |
| offset | No | Problems to skip, for pagination | |
| max_rating | No | Highest problem rating, inclusive | |
| min_rating | No | Lowest problem rating, inclusive | |
| tags_match | No | 'any' = at least one tag, 'all' = every tag | any |
| response_format | No | 'markdown' for a readable table, 'json' for structured data | markdown |
| exclude_solved_by | No | Hide problems this handle already solved, e.g. '3.141f' |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already carry readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds behavioral value: the 'easiest first' ordering and the semantic of exclude_solved_by. It does not contradict annotations and adds useful context beyond the structured fields.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise paragraphs, the first stating the core purpose and the second adding the key differentiator. Every sentence earns its place, and the critical filter is highlighted up front. No filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a search tool with an output schema, the description covers all essential behavior: rating band, tags, ordering, and the unique exclude filter. Nothing an agent needs to invoke it correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema documents every parameter. The description adds meaning beyond the schema for exclude_solved_by, explaining its practical significance and why it's the main reason to use this tool. That lifts it above the baseline 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a clear verb+resource statement: 'Find Codeforces problems by rating band and tags, easiest first.' It specifies the criteria and ordering, and its function is immediately distinguishable from the sibling tools (which cover performance, submissions, profiles, history, and contests).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains when to reach for this tool by highlighting the unique value of the exclude_solved_by filter that 'the Codeforces website cannot express.' This gives a concrete use case, but it does not explicitly contrast with sibling tools or state exclusions, so it stops short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
codeforces_tag_performanceARead-onlyIdempotent
Rank a handle's problem tags by solve rate, weakest first.
Computed from full submission history and deduplicated per problem, so grinding one problem twelve times counts once. Use it to decide what to practise: the lowest solve rates with a meaningful number of attempts are the real gaps. Codeforces exposes no endpoint for this.
| Name | Required | Description | Default |
|---|---|---|---|
| handle | Yes | Codeforces handle, e.g. '3.141f' | |
| min_attempted | No | Ignore tags with fewer attempts than this, so a 0/1 tag cannot top the weakness ranking | |
| response_format | No | 'markdown' for a readable table, 'json' for structured data | markdown |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnly/idempotent annotations, the description discloses important behavioral details: computation from full submission history, deduplication per problem (so repeated attempts count once), and the emphasis on 'meaningful number of attempts' via min_attempted. This adds context not present in annotations, making invocation expectations clear.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, each earning its place: the first states the core purpose, the second explains the computational nuance, and the third gives practical usage guidance. The purpose is front-loaded, and there is no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only analysis tool with an output schema (not shown but present), the description fully covers what the tool does, how results are derived, and when to use it. It omits nothing an agent needs to select and invoke the tool correctly; remaining details like response_format are handled by the schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All parameters are fully described in the schema (100% coverage), so the baseline of 3 applies. The description adds a minor tie-in by referring to 'meaningful number of attempts' which aligns with min_attempted, but it does not provide new semantic details beyond the schema definitions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action ('Rank a handle's problem tags by solve rate, weakest first') with a clear resource (problem tags of a handle). It distinguishes from siblings by specifying the computed nature and the lack of a Codeforces endpoint, which other tools likely do not cover.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear use context ('Use it to decide what to practise') and explains the deduplication logic that affects ranking. It does not explicitly name alternatives or state when not to use it, but it does imply uniqueness by noting Codeforces exposes no endpoint for this, giving adequate guidance for choosing it over similar tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
codeforces_upcoming_contestsARead-onlyIdempotent
Contests that have not started yet, soonest first, with start time and duration.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum contests to return | |
| response_format | No | 'markdown' for a readable table, 'json' for structured data | markdown |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover safety (readOnly, idempotent, non-destructive). The description adds behavioral context beyond those annotations by specifying that results are sorted soonest first and include start time and duration. This tells the agent exactly what to expect in the output, which is valuable. No additional behavioral disclosures (e.g., pagination, rate limits) are necessary for such a simple read-only tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence that leads with the essential information ('Contests that have not started yet') and includes ordering and output fields. No fluff, no redundant wording. It is appropriately sized and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with an output schema present, so return values do not need to be described. Annotations cover safety, and the description covers the core behavior. Sibling tools are clearly differentiated. For an agent to invoke this tool correctly, it has all necessary information: what it returns, how it sorts, and the parameter constraints are in the schema. No gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%: both parameters (limit and response_format) have clear descriptions in the schema. The tool description does not add any extra meaning to the parameters. Since the schema already fully documents them, the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear verb+resource: it lists contests that haven't started, with a specific ordering (soonest first) and the fields included (start time and duration). This distinguishes it sharply from sibling tools like codeforces_search_problems or codeforces_rating_history, which serve entirely different purposes. There is no ambiguity about what this tool returns.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage: it is for upcoming contests. However, it does not explicitly mention when to use it versus alternatives or any exclusions. Sibling tools are clearly different, so the context is obvious, but there is no explicit routing guidance. This fits the 'implied usage' level.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
codeforces_user_profileARead-onlyIdempotent
Public profile for a Codeforces handle: rating, max rating, rank, organization.
| Name | Required | Description | Default |
|---|---|---|---|
| handle | Yes | Codeforces handle, e.g. '3.141f' | |
| response_format | No | 'markdown' for a readable table, 'json' for structured data | markdown |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds that the profile is 'public' and enumerates the data fields, which is slightly beyond annotations but does not disclose other behaviors like error handling or data freshness. With annotations present, the added value is moderate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single focused sentence that front-loads the core purpose and lists key fields. There is no redundancy or filler; every word contributes to understanding what the tool does.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only profile tool, the description is nearly complete. The output schema exists, so return values don't need explanation. The description could mention the lack of filtering or performance implications, but given the straightforward nature and other structured metadata, the information is sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides full descriptions for both parameters (handle with example, response_format with explanation). The description adds no additional parameter-specific meaning, so the baseline of 3 applies given 100% schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves a public profile for a Codeforces handle and lists the specific fields returned (rating, max rating, rank, organization). This is a distinct purpose, easily differentiated from siblings like rating_history or recent_submissions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for getting profile data but does not provide explicit when-to-use guidance or contrast with sibling tools such as codeforces_rating_history (for historical trends) or codeforces_search_problems. No exclusions or alternatives are mentioned, leaving the agent to infer context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
6 tool updates
v0.1.0- First observed
codeforces_rating_history - First observed
codeforces_recent_submissions - First observed
codeforces_search_problems - First observed
codeforces_tag_performance - First observed
codeforces_upcoming_contests - First observed
codeforces_user_profile
TDQS
Scored across 6 tools
Each tool targets a distinct concern: problem search, tag-based performance analytics, recent submissions, user profile, rating history, and upcoming contests. There is no meaningful overlap or ambiguity between any pair of tools.
All names share the codeforces_ prefix and use snake_case, which makes them easy to predict and group. The pattern is not strictly verb_noun throughout, but the deviations are minor and do not hurt readability.
Six tools is a well-scoped size for a Codeforces companion server. Each tool covers a meaningful aspect of Codeforces usage without redundancy or bloat.
The surface covers the main Codeforces workflows: finding problems, analyzing weaknesses, reviewing submissions, checking profile progression, and seeing upcoming contests. A direct problem-statement or contest-problem listing tool would improve completeness, but the current set has no critical dead ends.
Maintenance
Related MCP Connectors
Search Codeforces problems and inspect public problem metadata through the official Codeforces API.
Search GitHub, npm, PyPI, StackOverflow, ArXiv from one MCP — built for coding agents.
Search AtCoder problems and fetch public problem statements through MCP.
Remote MCP learning coach for coding agents.
Related MCP Servers
- AlicenseAqualityBmaintenanceA complete, all-in-one MCP server for Codeforces, enabling AI assistants to access user profiles, compare users, search problems, get practice recommendations, and more.8MIT
- AlicenseNot gradedqualityBmaintenanceA production-ready MCP server for GitHub and competitive programming (Codeforces) that enables AI assistants to fetch user profiles, repository stats, contest history, and personalized problem recommendations.MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to access Codeforces public data (users, contests, problems, etc.) via natural language or direct tool calls through Pipeworx gateway.4 npmMIT
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to interact with GitHub data and Codeforces competitive programming analytics, including profiles, repositories, commits, PRs, issues, contest history, weak-topic analysis, and problem recommendations.MIT