(a)
@mcp.tool()
async def get_time(country: str = "JP") -> str:
    """
    指定が無ければ日本時間
    """
    ...



(b)
inputSchema={
    'properties': {
        'country': {
            'default': 'JP',
            'type': 'string'
        }
    },
    'type': 'object'
},
