mcp-protocol-recovery
Recover MCP servers when they fail to respond, lose connection, or return protocol errors
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Recover MCP servers when they fail to respond, lose connection, or return protocol errors
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Diagnose and fix Express.js error handling issues across all apps (FlowInCash, Crispi, MicroApps)
Diagnose and recover Plaid banking sync failures in FlowInCash
Debug and fix FlowInCash purchase decision queue and traffic-light evaluation system
Triage and resolve issues reported by beta users across FlowInCash and Crispi apps
| name | mcp-protocol-recovery |
| description | Recover MCP servers when they fail to respond, lose connection, or return protocol errors |
| version | 1.0.0 |
| tags | ["mcp","chatgpt","microapps","protocol","recovery"] |
Use this skill when any MicroApp MCP server fails to start, loses connection to ChatGPT, returns protocol errors, or stops responding to tool calls.
/media/bob/I/AI_Projects/FliC-MicroApps) — budget-builder, goal-tracker, traffic-light/media/bob/I/AI_Projects/Crispi-MicroApps) — all 5 appsAll use: createMcpServer().addTool().build() from @flowincash/mcp-tools
Protocol: stdio JSON-RPC over stdin/stdout
cd <app-dir> && node dist/index.jsnpm run build — stale dist/ is the #1 causels -la node_modules/@flowincash/mcp-tools
# Must point to /media/bob/I/AI_Projects/FlowInCash/packages/mcp-tools
ls .../FlowInCash/packages/mcp-tools/dist/// BAD — breaks MCP protocol
console.log('Starting server...');
// GOOD — use stderr
console.error('Starting server...');
mkdir -p node_modules/@flowincash
ln -sf /media/bob/I/AI_Projects/FlowInCash/packages/mcp-tools node_modules/@flowincash/mcp-tools
In-memory Map — state lost on restart. Expected behavior, not a bug.
npm run prepare:chatgpt (build + full test suite)npm run mcp:inspect — interactive MCP inspector UI