From 762c38bcc727c85fca0ea1b847eba1e6f83e94ec Mon Sep 17 00:00:00 2001 From: Mathieu Picciolli Date: Sun, 5 Jul 2026 08:23:28 -0400 Subject: [PATCH] fix: update manifest description to reflect write tools The MCPB manifest still claimed the server is strictly read-only, but pcm_update_save (and soon pcm_update_cyclist_ratings) write new .cdb files. Describe the actual write model instead: the source save is never modified and existing files are never overwritten. Co-Authored-By: Claude Fable 5 --- manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index da4316e..d13403a 100644 --- a/manifest.json +++ b/manifest.json @@ -2,8 +2,8 @@ "manifest_version": "0.3", "name": "pcm-mcp-server", "version": "0.2.0", - "description": "MCP server for querying Pro Cycling Manager game databases", - "long_description": "MCP server for querying Pro Cycling Manager game databases. This server provides tools to discover and inspect PCM career save files via the MCP protocol, allowing AI assistants to explore your saves in a structured way. This server is strictly read-only", + "description": "MCP server for querying and editing Pro Cycling Manager game databases", + "long_description": "MCP server for querying and editing Pro Cycling Manager game databases. This server provides tools to discover, inspect and query PCM career save files via the MCP protocol, allowing AI assistants to explore your saves in a structured way. Write tools never modify the source save: edits are always serialized to a new .cdb file, and existing files are never overwritten.", "author": { "name": "mpicciolli" },