lichess-mcp-analyzer
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LICHESS_TOKEN | Yes | Lichess API token (create at lichess.org/settings/oauth) | |
| LLM_MAX_TOKENS | No | Optional maximum tokens for LLM response (default 2000) | |
| NVIDIA_API_KEY | No | Optional NVIDIA API key for Nemotron model | |
| CEREBRAS_API_KEY | No | Optional Cerebras API key | |
| DEEPSEEK_API_KEY | No | Optional DeepSeek API key (shared for Chat and V4 Flash) | |
| DEFAULT_PROVIDER | No | Optional default LLM provider (cerebras, deepseek, or empty for auto) |
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 |
|---|---|
| lichess_fetch_gamesB | Stahne recent hry hrace z Lichess/Chess.com. |
| lichess_analyze_game | Analyzes a chess game move by move using Stockfish. |
| lichess_analyze_position | Analyzes a chess position using Stockfish or Lichess cloud eval. |
| lichess_opening_explorerA | Looks up a position in the Lichess Opening Explorer. |
| lichess_player_profileC | Returns a player's Lichess profile, ratings, and stats. |
| lichess_diagnose_player | Diagnoses a player's weaknesses across multiple games. |
| lichess_match_patternsA | Detects known playing patterns (A-Q1) from the player's pattern library. |
| lichess_workspace_info | Returns workspace context for LLM agent orientation. Provides root path, stockfish status, Python version, and registered tools count. |
| lichess_import_pgnA | Import and analyze a chess game from a PGN string. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| list_analysis_resources | Lists all stored analysis results. |
| list_pattern_resources | Lists all stored pattern detection results. |
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose: fetching games, importing PGN, matching patterns, opening explorer, and player profile. No overlap or ambiguity.
All tools share the 'lichess_' prefix and use snake_case, but verbs are not uniformly applied: 'fetch_games', 'import_pgn', 'match_patterns' are verb_noun, while 'opening_explorer' and 'player_profile' are noun phrases. Minor inconsistency.
Five tools is well-scoped for a chess analysis server. Each tool earns its place without being overwhelming or too sparse.
Covers core workflows: game retrieval, PGN import, pattern matching, opening lookup, and player stats. Missing a direct 'analyze game' tool that doesn't require separate PGN import, but the set is largely complete.