What is the standard JSON-RPC 2.0 error code for a method that the server does not recognize?
Answer: -32601 (Method not found)
-32601 is the JSON-RPC 2.0 standard error code for Method not found. -32700 is for parse errors (malformed JSON), -32600 is for an invalid request structure, and -32602 is for invalid parameters on a recognized method.