(a)
from typing import Dict
@mcp.tool()
async def register_user(user: Dict[str, str]) -> str:
    """
    ユーザ情報（name, email など）を登録する
    """
    ...





(b)
inputSchema={
    'properties': {
        'user': {
            'additionalProperties': {'type': 'string'},
            'type': 'object'
        }
    }, 
    'required': ['user'], 
    'type': 'object'
},
