Skip to main content
Glama
schemas.ts1.12 kB
import { z } from 'zod'; /** * Schema for the think tool parameters */ export const ThinkSchema = z.object({ structuredReasoning: z.string() .min(10, 'Reasoning must be at least 10 characters long') .describe('A structured thought process to work through complex problems. Use this as a dedicated space for reasoning step-by-step.'), // Optional memory parameters - can be added in future to associate thoughts with specific contexts associateWithEntity: z.string().optional() .describe('Optional entity name to associate this thought with'), category: z.string().optional() .describe('Optional category for the thought (e.g., "problem-solving", "analysis", "planning")'), tags: z.array(z.string()).optional() .describe('Optional tags to help categorize and find this thought later'), storeInMemory: z.boolean().optional() .default(false) .describe('Whether to store this thought in the knowledge graph memory'), context: z.string().optional() .describe('Optional context or situation relevant to this thought (e.g., project, meeting, or scenario)'), });

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/flight505/mcp-think-tank'

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