example use, live MCP

told chat i dont want to use the fake ahh server we have (FakeAdapter). switch over, boom, errors.
This commit is contained in:
lda
2026-05-09 01:01:05 +07:00 Verified
parent 4d8e1e29ee
commit 47b337a9c3
6 changed files with 141 additions and 10 deletions
+2 -4
View File
@@ -177,11 +177,9 @@ def test_pydantic_field_descriptions_survive_node_catalog_schema() -> None:
assert entry.description == "Echoes a documented message."
assert entry.input_schema["type"] == "object"
assert (
entry.input_schema["properties"]["message"]["description"]
== "Message to echo"
entry.input_schema["properties"]["message"]["description"] == "Message to echo"
)
assert entry.output_schema["type"] == "object"
assert (
entry.output_schema["properties"]["echoed"]["description"]
== "Echoed message"
entry.output_schema["properties"]["echoed"]["description"] == "Echoed message"
)