Detailed guide on MCP tool calling internal server error -32603, including log analysis, common crash scenarios, and debugging methods.
MCP-JSONRPC-32603 indicates an internal error occurred in the MCP server while executing a tool call. This is a server-side implementation issue, not a client parameter error.
{
"jsonrpc": "2.0",
"id": 42,
"error": {
"code": -32603,
"message": "Internal error",
"data": {
"error": "database connection failed"
}
}
}
Solution: Check database service status and network connectivity.
Solution: Check memory and CPU usage, restart the service.
Solution: Check server logs to locate specific errors.
Solution: Check external API and service status.
-32602 is parameter validation error (client-side issue), -32603 is server internal error (server-side issue).
Depending on launch method, logs may be in console output, log files, or system logs. In Claude Desktop, check developer tools.
You can retry, but if the error persists, check server logs to locate the root cause.
人类专家验证
官方机器人验证