Skip to main content
Glama

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
NameRequiredDescriptionDefault
promptYesThe complex prompt requiring high-performance reasoning

Implementation Reference

  • 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,
  • 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();
  • 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,
        },
      },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/joshua400/neuroverse'

If you have feedback or need assistance with the MCP directory API, please join our Discord server