We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a2dcfad + 1364715 commit dc4a9d4Copy full SHA for dc4a9d4
fastapi_mcp/openapi/convert.py
@@ -236,6 +236,7 @@ def convert_openapi_to_mcp_tools(
236
# Add body parameters to properties
237
for param_name, param in body_params:
238
param_schema = param.get("schema", {})
239
+ param_desc = param.get("description", "")
240
param_required = param.get("required", False)
241
242
properties[param_name] = param_schema.copy()
0 commit comments