Skip to content
Open
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 mcp_server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,6 @@ async def list_tools() -> list[Tool]:
return tools


@server.call_tool()
def _ainl_unavailable_payload() -> Dict[str, Any]:
return {
"ok": False,
Expand All @@ -840,6 +839,7 @@ def _ainl_unavailable_payload() -> Dict[str, Any]:
}


@server.call_tool()
async def call_tool(name: str, arguments: dict) -> list[TextContent]:
"""Handle tool calls"""
try:
Expand Down
Loading