Skip to content
Merged
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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ydb>=3.21.0
mcp>=1.6.0
mcp==1.12.4
10 changes: 9 additions & 1 deletion ydb_mcp/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,15 @@ def register_tools(self):

# Register all tools with FastMCP framework
for spec in tool_specs:
self.add_tool(spec["handler"], name=spec["name"], description=spec["description"])
self.add_tool(
spec["handler"],
name=spec["name"],
description=spec["description"],

# Structured output is temporarily disabled until proper schema definitions are implemented.
# See https://github.com/ydb-platform/ydb-mcp/issues/12 for details.
structured_output=False,
)

# Also register with our tool manager
self.tool_manager.register_tool(
Expand Down