We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b77f21 commit 6c0cf5bCopy full SHA for 6c0cf5b
1 file changed
main.py
@@ -299,10 +299,11 @@ async def mcp_post_handler(fastapi_request: Request):
299
},
300
}
301
except Exception as e:
302
+ print(f"MCP list_breaches error: {e}")
303
return {
304
"jsonrpc": "2.0",
305
"id": request_body.get("id"),
- "error": {"code": -32603, "message": f"Internal error: {str(e)}"},
306
+ "error": {"code": -32603, "message": "Internal error: Failed to list breaches"},
307
308
309
# Default response for unsupported methods
0 commit comments