unofficially add wf.std as source

This commit is contained in:
lda
2026-05-09 20:34:22 +07:00 Verified
parent 47b337a9c3
commit 8dc149b12d
8 changed files with 63 additions and 3 deletions
+2
View File
@@ -8,9 +8,11 @@ from pydantic import Field
server = FastMCP("echo-fixture")
class EchoToolResult(TypedDict):
echoed: str
@server.tool(title="Echo tool")
async def echo_tool(
text: Annotated[str, Field(description="Text to echo")],