tool_that_access_request
Retrieve user request details by submitting a username. This tool is part of the Demo HTTP MCP Server, enabling access to specific user-related request data for testing and integration purposes.
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"
}