tool_that_access_request
Retrieve user request data by providing a username through the Simple HTTP MCP Server, enabling remote execution of Python functions with type safety and async support.
Instructions
Access the request.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
username | Yes | The username of the user |
Input Schema (JSON Schema)
{
"properties": {
"username": {
"description": "The username of the user",
"title": "Username",
"type": "string"
}
},
"required": [
"username"
],
"title": "tool_that_access_requestArguments",
"type": "object"
}