r1_reasoning
Analyze and solve complex problems using advanced reasoning methods within the MCP Advanced Reasoning Server. Input a prompt to generate structured, logical solutions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
prompt | Yes | The problem or query to reason about |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"prompt": {
"description": "The problem or query to reason about",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}