Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: override input with json.loads only when output value is valid #350

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion src/mcp/server/fastmcp/utilities/func_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,15 @@
ForwardRef,
)

from pydantic import BaseModel, ConfigDict, Field, WithJsonSchema, create_model
from pydantic import (
BaseModel,
ConfigDict,
Field,
TypeAdapter,
ValidationError,
WithJsonSchema,
create_model,
)
from pydantic._internal._typing_extra import eval_type_backport
from pydantic.fields import FieldInfo
from pydantic_core import PydanticUndefined
Expand Down Expand Up @@ -93,6 +101,12 @@ def pre_parse_json(self, data: dict[str, Any]) -> dict[str, Any]:
# Should really be parsed as '"hello"' in Python - but if we parse
# it as JSON it'll turn into just 'hello'. So we skip it.
continue
try:
# Validate parsed value
TypeAdapter(_field_info.annotation).validate_python(pre_parsed)
except ValidationError:
continue # Parsed value is invalid - skip

new_data[field_name] = pre_parsed
assert new_data.keys() == data.keys()
return new_data
Expand Down
8 changes: 8 additions & 0 deletions tests/server/fastmcp/test_func_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ def complex_arguments_fn(
must_be_none_with_default: None = None,
an_int_with_equals_field: int = Field(1, ge=0),
int_annotated_with_default: Annotated[int, Field(description="hey")] = 5,
num_annotated_with_str: str = "",
) -> str:
_ = (
an_int,
Expand All @@ -81,6 +82,7 @@ def complex_arguments_fn(
must_be_none_with_default,
an_int_with_equals_field,
int_annotated_with_default,
num_annotated_with_str,
)
return "ok!"

Expand All @@ -107,6 +109,7 @@ async def test_complex_function_runtime_arg_validation_non_json():
"my_model_a": {},
"my_model_a_forward_ref": {},
"my_model_b": {"how_many_shrimp": 5, "ok": {"x": 1}, "y": None},
"num_annotated_with_str": "5",
},
arguments_to_pass_directly=None,
)
Expand Down Expand Up @@ -381,6 +384,11 @@ def test_complex_function_json_schema():
"title": "Int Annotated With Default",
"type": "integer",
},
"num_annotated_with_str": {
"default": "",
"title": "Num Annotated With Str",
"type": "string",
},
},
"required": [
"an_int",
Expand Down