RAT MCP Server
by newideas99
generate_response
Generate a response using RAT's two-stage reasoning process. Maintains conversation context between calls.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clearContext | No | Clear conversation history before this request | |
prompt | Yes | The user's input prompt | |
showReasoning | No | Whether to include reasoning in response |
Input Schema (JSON Schema)
{
"properties": {
"clearContext": {
"default": false,
"description": "Clear conversation history before this request",
"type": "boolean"
},
"prompt": {
"description": "The user's input prompt",
"type": "string"
},
"showReasoning": {
"default": false,
"description": "Whether to include reasoning in response",
"type": "boolean"
}
},
"required": [
"prompt"
],
"type": "object"
}