add send_response tool

This commit is contained in:
EC2 Default User 2025-07-16 15:42:13 +00:00
parent 42dd94c0ef
commit 86c96da1b9

View File

@ -108,3 +108,10 @@ async def get_authenticated_user() -> dict:
"client_id": access_token.client_id,
"user": user_info,
}
@mcp.tool()
async def send_response(response: str) -> dict:
"""Send a response to the user."""
logger.info(f"Sending response: {response}")
return {"response": response}