neuroverse_reason
Execute complex reasoning tasks using high-performance models to analyze prompts and provide analytical responses for AI agents.
Instructions
Execute a complex reasoning task using specialized high-performance models (e.g. OpenRouter Reasoning). Returns the model's analytical response.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | The complex prompt requiring high-performance reasoning |
Implementation Reference
- npm/src/index.ts:567-576 (handler)The handler function for 'neuroverse_reason' that invokes the LLM with a reasoning task.
async (params) => { try { const response = await callLLM(params.prompt, TaskType.REASONING); return { content: [{ type: "text" as const, text: response }], }; } catch (e) { return { content: [{ type: "text" as const, text: `Error: ${e instanceof Error ? e.message : String(e)}` }], isError: true, - npm/src/index.ts:548-552 (schema)The Zod schema defining the input for 'neuroverse_reason'.
const ReasonSchema = z .object({ prompt: z.string().min(1).describe("The complex prompt requiring high-performance reasoning"), }) .strict(); - npm/src/index.ts:554-566 (registration)The MCP tool registration for 'neuroverse_reason'.
server.registerTool( "neuroverse_reason", { title: "High-Performance Reason", description: "Execute a complex reasoning task using specialized high-performance models (e.g. OpenRouter Reasoning). Returns the model's analytical response.", inputSchema: ReasonSchema, annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true, }, },