chess-mcp-server: Skill for Cursor

.cursor/skills/mcp-chess-e2e/SKILL.md

mcp-chess-e2e is a skill for Cursor from fritzprix/chess-mcp-server. It costs 55 tokens per session (550 once invoked), scanned A, original, MIT.

End-to-end tests for a Chess MCP server, which lets an AI client play or manage chess through the Model Context Protocol. The tests use real client and server processes to check communication, games, user-interface resources, and saved game state.

In plain words
What is it for?
Use them to test handshakes, tool discovery, agent-versus-computer and agent-versus-agent games, human game creation, reconnects, and isolated temporary databases.
Why use it?
Calling internal functions alone may miss errors in the protocol connection, process lifecycle, or multiple sessions. These tests check the server as a real MCP client would use it.

Skill for Cursor

Written for Cursor: installed under .cursor/.

This is fritzprix/chess-mcp-server's own configuration. It tells Cursor how to work on chess-mcp-server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything chess-mcp-server configures →

Reuse

Borrowing it

Nothing to install: this file belongs to fritzprix/chess-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/fritzprix/chess-mcp-server/main/.cursor/skills/mcp-chess-e2e/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/fritzprix/chess-mcp-server

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mcp-chess-e2e

README.md
[![agentmods](https://agentmods.dev/badge/skills/fritzprix/chess-mcp-server/mcp-chess-e2e/github.svg)](https://agentmods.dev/skills/fritzprix/chess-mcp-server/mcp-chess-e2e)
Your own site
<a href="https://agentmods.dev/skills/fritzprix/chess-mcp-server/mcp-chess-e2e"><img src="https://agentmods.dev/badge/skills/fritzprix/chess-mcp-server/mcp-chess-e2e/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mcp-chess-e2e

Your own site · 80×15
<a href="https://agentmods.dev/skills/fritzprix/chess-mcp-server/mcp-chess-e2e"><img src="https://agentmods.dev/badge/skills/fritzprix/chess-mcp-server/mcp-chess-e2e.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 550 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00055 $0.00550
Opus 5 $0.00028 $0.00275
Sonnet 5 $0.00011 $0.00110
Haiku 4.5 $0.00006 $0.00055

Measured 8d ago against content hash 02556404eaef, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

mcp-chess-e2e scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/skills/mcp-chess-e2e/SKILL.md · 75 lines

How it starts

The opening of the file, as written. The whole thing — 75 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Chess MCP E2E Testing

Purpose

Test the server through the MCP protocol rather than calling server functions directly. Use src.mcp_client.ChessMcpClient as the reusable client.

Standard command

Run the complete suite with:

uv run --extra dev pytest -q

Run only MCP scenario tests with:

uv run --extra dev pytest tests/test_mcp_client_scenarios.py -q

Test isolation

  • Give each test a unique temporary CHESS_MCP_DB_PATH.
  • Set BROWSER to a nonexistent executable unless browser launching is being tested explicitly.
  • Do not use the user's persistent game database.
  • Let ChessMcpClient own the stdio and session lifecycle with async with.

Required scenarios

Maintain coverage for:

  1. MCP initialization and tool discovery.
  2. Agent versus Computer with the agent as White.
  3. Agent versus Computer with the agent as Black, including the initial AI move.
  4. Agent versus Agent using two ChessMcpClient instances and the same temporary database path. Each client must run its own server process. 5. Human game creation returning an embedded UI resource. 6. State persistence after reconnecting to the same database.

Scenario rules

   - Parse `game_id` from `createGame` and use the returned `GameSession` for
     subsequent calls.
  • Call joinGame from the second client for Agent versus Agent scenarios.
  • Assert both result.isError and meaningful state text where relevant.
  • Prefer stable state assertions such as turn, FEN presence, and game-over status over exact prose wording.
  • Use legal moves that are deterministic for the scenario; do not assume which move the AI selected unless the test explicitly controls randomness.

Adding a scenario

  1. Add the test to tests/test_mcp_client_scenarios.py.
  2. Use a fresh tmp_path database.
  3. Use separate client contexts when process isolation matters.
  4. Verify both success and failure paths.
  5. Run the focused test file, then the complete suite.

Read the full file on GitHub · 75 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 75 lines · 55 tokens per session scan A 02556404eaef

Subscribe to this mod's changes

mcp-chess-e2e is a skill published in the GitHub repository fritzprix/chess-mcp-server (0 stars, last pushed 11d ago), licensed MIT. It adds 55 tokens to every session and 550 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

blazemeter-private-locations

Comprehensive guide for BlazeMeter Private Locations, including Radar Agent, installation (Docker, Kubernetes, Helm), configuration, management, and troubleshooting. Use when working with Private Locations for (1) Installing agents (Docker, Kubernetes, Helm Chart), (2) Configuring Radar Agent for API Monitoring, (3)…

Blazemeter/bzm-mcp · 103 tokens

blazemeter-functional-testing

Comprehensive guide for BlazeMeter Functional Testing, including GUI Functional Tests, API Tests (deprecated), Action Library, and debugging. Use when working with Functional Testing for (1) Creating GUI Functional Tests (YAML, Java IDE, Python IDE), (2) Managing Functional Tests (duplicate, delete, move, rename), (3)…

Blazemeter/bzm-mcp · 124 tokens

blazemeter-recorders

Comprehensive guide for BlazeMeter Recorders, including Chrome Extension and Proxy Recorder. Use when working with recorders for (1) Recording tests with Chrome Extension, (2) Creating and using Proxy Recorder, (3) Configuring browsers and devices for proxy recording, (4) Setting port ranges for proxy recorder, or any…

Blazemeter/bzm-mcp · 76 tokens

lastest

Lastest is a visual regression testing platform. It records browser tests, runs them via Playwright, diffs screenshots, and uses AI to classify changes. Available as an MCP server for AI agent integration.

las-team/lastest · 0 tokens

field-test

Exercise tools, resources, and prompts against a live HTTP server via MCP JSON-RPC over curl. Starts the server, surfaces the catalog, runs real and adversarial inputs, and produces a tight report with concrete findings and numbered follow-up options. Use after adding or modifying definitions, or when the user asks to…

cyanheads/mcp-ts-core · 76 tokens

field-test

Exercise tools, resources, and prompts against a live HTTP server via MCP JSON-RPC over curl. Starts the server, surfaces the catalog, runs real and adversarial inputs, and produces a tight report with concrete findings and numbered follow-up options. Use after adding or modifying definitions, or when the user asks to…

cyanheads/pubmed-mcp-server · 76 tokens