Spaces:
Build error
Build error
File size: 662 Bytes
51ff9e5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
from mcp.types import Tool
class MCPClientTool(Tool):
"""
Represents a tool proxy that can be called on the MCP server from the client side.
This version doesn't store a session reference, as sessions are created on-demand
by the MCPClient for each operation.
"""
class Config:
arbitrary_types_allowed = True
def to_param(self) -> dict:
"""Convert tool to function call format."""
return {
'type': 'function',
'function': {
'name': self.name,
'description': self.description,
'parameters': self.inputSchema,
},
}
|