Open
Description
When my windsurf calls the read_graph tool from the mcp/memory server the tool call fails with:
Output: No arguments provided for tool: read_graph
Problem is that the code [index.js] guards against missing args
if (!args) {
throw new Error(`No arguments provided for tool: ${name}`);
}
But read_graph does not take any args
case "read_graph":
return { content: [{ type: "text", text: JSON.stringify(await knowledgeGraphManager.readGraph(), null, 2) }] };