(a)
from typing import List
@mcp.tool()
async def get_times(countries: List[str]) -> dict:
    """
    複数の国コードを受け取り、それぞれの現在時刻を返す
    """
    ...




(b)
inputSchema={
    'properties': {
        'countries': {
            'items': { 'type': 'string' }, 
            'type': 'array'
        }
    }
    'required': ['countries'], 
    'type': 'object'
}
