mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TAVILY_API_KEY | Yes | Your Tavily API key for web search capabilities. |
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": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| web_searchB | Search the web for information about the given query. Parameters:
Example:
|
| roll_diceA | Roll dice with the given notation. Parameters:
Example:
|
| chess_player_statsC | Get your Chess.com profile and ratings summary. Example:
|
| chess_recent_matchesB | List your most recent games. Parameters:
Example:
|
| chess_last_matchA | Show details about your most recent finished game. Example:
|
| chess_analyze_recent_gameC | Run engine analysis on one of your recent games (0 = latest). Parameters:
Example:
|
| chess_analyze_pgnC | Analyze a single PGN string with Stockfish. Parameters:
Example:
|
| chess_analyze_game_idA | Analyze a Chess.com game by its game ID using Stockfish. Parameters:
Example:
|
| chess_analyze_multiple_pgnA | Analyze multiple PGNs separated by '---', '###', or triple newlines. Parameters:
Example:
|
| chessA | Unified Chess tool (prefer the specific chess_* tools instead). Supported actions and params:
Examples:
|
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 10 tools
Most chess tools are clearly distinct (stats, matches, analysis by PGN or ID), but the generic 'chess' tool duplicates all their functionality, creating ambiguity about which tool to use. web_search and roll_dice are unrelated and easy to distinguish.
web_search and roll_dice use verb_noun pattern consistently. Chess tools mostly follow chess_verb_noun but include exceptions like 'chess_player_stats' (noun_noun) and 'chess_recent_matches' (adjective_noun). The plain 'chess' tool breaks the pattern entirely.
10 tools is a reasonable number, but the inclusion of the redundant 'chess' tool and the mix of unrelated domains (web search, dice, chess) makes the surface feel slightly bloated. Could be streamlined by removing the generic chess tool.
The chess subdomain covers stats, recent matches, and PGN analysis well, but lacks features like game archiving or move-by-move play. web_search and roll_dice are single-purpose and complete. Overall the surface is adequate but not deep in any area.