get_player_profile
Retrieve a Chess.com player's profile by entering their username. Get account details like name, location, and stats.
Instructions
Get a player's profile from Chess.com
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes |
Retrieve a Chess.com player's profile by entering their username. Get account details like name, location, and stats.
Get a player's profile from Chess.com
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes |
Changes observed during successful MCP inspections.
v0.8.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the full behavioral burden. The word 'Get' implies a read operation, but the description does not disclose rate limits, authentication needs, error behavior, or what fields the profile contains.
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 sentence with no filler words. It front-loads the action and resource, and every word 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?
For a single-parameter read operation, the description is minimally viable. However, with no annotations and no output schema, it leaves return-content details, error cases, and any special constraints on the username unspecified, which are meaningful gaps for an agent.
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 provides only 'username' with no description, and schema description coverage is 0%. The description does not explain the expected username format, case sensitivity, or how the parameter maps to the profile request beyond naming the player.
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 verb and resource: it gets a player's profile from Chess.com. 'Profile' distinguishes it from sibling tools like get_player_stats and get_player_current_games, though it does not explicitly call them out.
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 gives no guidance about when to use this tool versus get_player_stats, get_player_clubs, or other player-related tools. It simply states the action without context, prerequisites, or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.