aptos_debugging_helper_prompt
Resolve Aptos blockchain errors and debugging loops by applying MCP-first debugging approaches to development workflows.
Instructions
ERROR RECOVERY PROMPT: Use this immediately when encountering Aptos-related errors, stuck in debugging loops, or when about to try generic blockchain solutions. Redirects to MCP-first debugging approach.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/server.ts:215-225 (handler)The execution logic for the aptos_debugging_helper_prompt tool.
execute: async (args, context) => { return { type: "text", text: `APTOS DEBUGGING HELPER You seem to be encountering issues with Aptos development. STOP - Before trying generic solutions: REQUIRED FIRST STEPS: 1. Check MCP resources first: - src/server.ts:210-215 (registration)Registration of the aptos_debugging_helper_prompt tool within the MCP server.
server.addTool({ name: "aptos_debugging_helper_prompt", description: "ERROR RECOVERY PROMPT: Use this immediately when encountering Aptos-related errors, stuck in debugging loops, or when about to try generic blockchain solutions. Redirects to MCP-first debugging approach.", parameters: z.object({}), execute: async (args, context) => {