Commit 36315f0
fix(mcp): respond -32601 to unknown request methods instead of silence
handle_request() returned None for unrecognized methods, and main() only
prints when a response exists - so unknown JSON-RPC requests got no reply
at all. Newer MCP clients probe servers before initializing: Google
Antigravity CLI (MCP protocol 2026-07-28) opens with a server/discover
request, and when leann_mcp stays silent it waits indefinitely - the
server shows "initializing..." forever in agy's MCP panel. Claude Code
and Gemini CLI never send the probe, which is why this was invisible
there.
Per JSON-RPC 2.0: an unknown request (with an id) now gets a -32601
Method-not-found error so clients can fall back; unknown notifications
(no id) still correctly get no reply.
Verified against Antigravity CLI 1.1.3's captured opening bytes:
server/discover gets its error, the client falls back to initialize,
and the server settles immediately with all tools listed. Claude Code
behavior unchanged.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>1 parent 7482054 commit 36315f0
1 file changed
Lines changed: 11 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
362 | 362 | | |
363 | 363 | | |
364 | 364 | | |
| 365 | + | |
| 366 | + | |
| 367 | + | |
| 368 | + | |
| 369 | + | |
| 370 | + | |
| 371 | + | |
| 372 | + | |
| 373 | + | |
| 374 | + | |
| 375 | + | |
365 | 376 | | |
366 | 377 | | |
367 | 378 | | |
| |||
0 commit comments