mcp server done
Some checks failed
MCP Tests / mcp-tests (pull_request) Failing after 4s

This commit is contained in:
Danilo Reyes
2026-02-01 10:36:54 -06:00
parent ecf058aacf
commit 8946ade5e8
15 changed files with 214 additions and 190 deletions

View File

@@ -21,7 +21,7 @@ def test_invoke_tool_handles_unknown() -> None:
"""Unknown tool returns unsupported guidance."""
result = tools.invoke_tool("missing-tool", {})
assert result["status"] == "unsupported"
assert "listTools" in result["actions"][0]
assert "tools/list" in result["actions"][0]
def test_list_tools_payload_shape() -> None: