fastmcp/tests/server/test_call_arguments.py
Chris Guidry ba283ddb4c
Support CallArgument and Depends bindings from uncalled-for 0.4.0 (#4802)
* Support CallArgument and Depends bindings from uncalled-for 0.4.0

uncalled-for 0.4.0 adds explicit argument references: CallArgument()
lets a dependency factory read an argument of the function it serves,
and Depends(factory, **bindings) supplies factory arguments at the
declaration site (https://github.com/chrisguidry/uncalled-for/pull/12).
FastMCP's resolver now opens a frame_scope() around dependency
resolution, with the sanitized user arguments as the frame's provided
values. A CallArgument can reference a tool call's public parameters,
but a caller-supplied value for a dependency parameter name is still
stripped before resolution. CallArgument and CycleError are re-exported
from fastmcp.dependencies, and the dependency-injection docs cover both
features.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* Raise the pydocket floor to 0.24.0 outside Windows

pydocket 0.24.0 resolves TaskArgument and CallArgument through
uncalled-for 0.4.0's call-scoped frames. Windows keeps the 0.20.0
floor: the burner-redis<0.1.7 pin there transitively caps pydocket to
<0.20.2, and burner-redis has shipped no fixed release yet.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* Bump the pydocket floor to 0.24.1 for reliable worker shutdown

docket 0.24.1 fixes a lost cancellation in worker shutdown on Python
3.10 and 3.11 (chrisguidry/docket#456): asyncio.wait_for swallowed a
cancellation delivered in the same event-loop tick that its inner future
completed, so cancelling run_forever during our lifespan teardown left
the worker running and hung the test session. That is what timed out the
Python 3.10 and lowest-direct jobs here. The floor stays platform-split;
Windows keeps >=0.20.0 under the burner-redis pin.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* Drop the Windows burner-redis pin and unify the pydocket floor at 0.24.1

The pin blamed the wrong package. The Windows "interpreter crash" that
motivated it (#4618) was pydocket 0.23.1 losing an external cancellation
during worker teardown; pytest-timeout's hard kill of the hung xdist
worker discarded its stdout and looked like a native fault. Capping
burner-redis also dragged pydocket below 0.20.2, so the two variables
were never separated. The repro matrix on prefectlabs/burner-redis#7
shows the July environment failing as resolved, passing with only
pydocket rolled back, and passing with pydocket 0.24.1 alongside
burner-redis 0.1.7 on Windows. pydocket 0.24.1 carries the fix
(chrisguidry/docket#456), so every platform now shares one floor.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

---------

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Co-authored-by: nate nowack <thrast36@gmail.com>
2026-08-13 22:19:17 -05:00

189 lines
6 KiB
Python

"""Tests for CallArgument and Depends bindings through FastMCP's resolution."""
import pytest
from mcp_types import TextContent
from fastmcp import FastMCP
from fastmcp.dependencies import CallArgument, CycleError, Depends
from fastmcp.server.dependencies import resolve_dependencies
@pytest.fixture
def mcp():
"""Create a FastMCP server for testing."""
return FastMCP("test-server")
async def test_bare_call_argument_reads_tool_parameter(mcp: FastMCP):
"""A bare CallArgument takes the value of the same-named tool parameter."""
def get_greeting(name: str = CallArgument()) -> str:
return f"Hello, {name}!"
@mcp.tool()
async def greet(name: str, greeting: str = Depends(get_greeting)) -> str:
return greeting
result = await mcp.call_tool("greet", {"name": "Alice"})
assert result.structured_content is not None
assert result.structured_content["result"] == "Hello, Alice!"
async def test_named_call_argument_reads_tool_parameter(mcp: FastMCP):
"""CallArgument("name") reads a tool parameter with a different name."""
def get_greeting(who: str = CallArgument("name")) -> str:
return f"Hello, {who}!"
@mcp.tool()
async def greet(name: str, greeting: str = Depends(get_greeting)) -> str:
return greeting
result = await mcp.call_tool("greet", {"name": "Bob"})
assert result.structured_content is not None
assert result.structured_content["result"] == "Hello, Bob!"
async def test_call_argument_in_binding(mcp: FastMCP):
"""A CallArgument binding wires a tool parameter to a factory parameter."""
def get_account(user_id: str) -> dict[str, str]:
return {"id": user_id, "plan": "pro"}
@mcp.tool()
async def show_account(
owner: str,
account: dict[str, str] = Depends(get_account, user_id=CallArgument("owner")),
) -> str:
return f"{account['id']}:{account['plan']}"
result = await mcp.call_tool("show_account", {"owner": "alice"})
assert result.structured_content is not None
assert result.structured_content["result"] == "alice:pro"
async def test_plain_value_binding(mcp: FastMCP):
"""A binding that is not a Dependency passes through to the factory as-is."""
def get_url(scheme: str) -> str:
return f"{scheme}://example.com"
@mcp.tool()
async def fetch(path: str, url: str = Depends(get_url, scheme="https")) -> str:
return f"{url}/{path}"
result = await mcp.call_tool("fetch", {"path": "docs"})
assert result.structured_content is not None
assert result.structured_content["result"] == "https://example.com/docs"
async def test_binding_replaces_factory_depends_default(mcp: FastMCP):
"""A binding replaces the factory's own Depends default, which never runs."""
default_calls = 0
def get_default_region() -> str:
nonlocal default_calls
default_calls += 1
return "us-east-1"
def get_bucket(region: str = Depends(get_default_region)) -> str:
return f"bucket-{region}"
@mcp.tool()
async def store(
data: str, bucket: str = Depends(get_bucket, region="eu-west-1")
) -> str:
return bucket
result = await mcp.call_tool("store", {"data": "payload"})
assert result.structured_content is not None
assert result.structured_content["result"] == "bucket-eu-west-1"
assert default_calls == 0
async def test_optional_call_argument_yields_none(mcp: FastMCP):
"""CallArgument(optional=True) yields None for a name the tool lacks."""
def get_note(tenant: str | None = CallArgument("tenant", optional=True)) -> str:
return f"tenant={tenant}"
@mcp.tool()
async def report(topic: str, note: str = Depends(get_note)) -> str:
return note
result = await mcp.call_tool("report", {"topic": "sales"})
assert result.structured_content is not None
assert result.structured_content["result"] == "tenant=None"
async def test_sibling_dependency_resolves_once(mcp: FastMCP):
"""A CallArgument reference to a dependency-backed sibling shares one value."""
session_calls = 0
def get_session() -> str:
nonlocal session_calls
session_calls += 1
return "session-1"
def audit(session: str = CallArgument()) -> str:
return f"audit:{session}"
@mcp.tool()
async def act(
step: str,
session: str = Depends(get_session),
log: str = Depends(audit),
) -> str:
return f"{log}|{session}"
result = await mcp.call_tool("act", {"step": "one"})
assert result.structured_content is not None
assert result.structured_content["result"] == "audit:session-1|session-1"
assert session_calls == 1
async def test_call_argument_cycle_raises_cycle_error():
"""CallArgument references that form a cycle raise CycleError with the path."""
def get_a(b: str = CallArgument()) -> str:
return b
def get_b(a: str = CallArgument()) -> str:
return a
async def entangled(a: str = Depends(get_a), b: str = Depends(get_b)) -> str:
return f"{a}{b}"
with pytest.raises(CycleError, match="a -> b -> a"):
async with resolve_dependencies(entangled, {}):
pass
async def test_colliding_argument_never_reaches_call_argument(mcp: FastMCP):
"""A caller-supplied value for a dependency parameter name is stripped.
A CallArgument that references the dependency parameter resolves the
dependency itself, never the caller's value.
"""
def get_role() -> str:
return "user"
def describe(role: str = CallArgument()) -> str:
return f"role={role}"
@mcp.prompt()
async def status(
topic: str,
role: str = Depends(get_role),
summary: str = Depends(describe),
) -> str:
return f"{topic}: {summary}"
result = await mcp.render_prompt("status", {"topic": "audit", "role": "admin"})
content = result.messages[0].content
assert isinstance(content, TextContent)
assert "role=user" in content.text
assert "admin" not in content.text