Skip to main content
Glama
list-mcp-assets.ts7.73 kB
/** * MCP Prompt definition for listing server capabilities * * Dynamically generates content from the same source modules as * scripts/generate-capabilities.ts to ensure they stay in sync. */ import { NOTEBOOK_OPERATIONS } from "../notebook/operations.js"; import { AVAILABLE_TEMPLATES } from "../notebook/templates.generated.js"; import { MENTAL_MODELS, TAG_DEFINITIONS, MENTAL_MODELS_OPERATIONS, } from "../mental-models/operations.js"; // Inline the interleaved thinking description to avoid circular import const INTERLEAVED_THINKING_DESCRIPTION = "Use this Thoughtbox server as a reasoning workspace to alternate between internal reasoning steps and external tool/action invocation"; export const LIST_MCP_ASSETS_PROMPT = { name: "list_mcp_assets", title: "list_mcp_assets", description: "Overview of all MCP capabilities, tools, resources, and quickstart guide", arguments: [], }; /** * Thoughtbox tool schema (mirrored from index.ts) */ const THOUGHTBOX_PARAMS = [ { name: "thought", type: "string", required: true, description: "Your current thinking step" }, { name: "nextThoughtNeeded", type: "boolean", required: true, description: "Whether another thought step is needed" }, { name: "thoughtNumber", type: "integer", required: true, description: "Current thought number (1→N forward, N→1 backward)" }, { name: "totalThoughts", type: "integer", required: true, description: "Estimated total thoughts needed" }, { name: "isRevision", type: "boolean", required: false, description: "Whether this revises previous thinking" }, { name: "revisesThought", type: "integer", required: false, description: "Which thought is being reconsidered" }, { name: "branchFromThought", type: "integer", required: false, description: "Branching point thought number" }, { name: "branchId", type: "string", required: false, description: "Branch identifier" }, { name: "needsMoreThoughts", type: "boolean", required: false, description: "If more thoughts are needed" }, { name: "includeGuide", type: "boolean", required: false, description: "Request the patterns cookbook guide" }, { name: "sessionTitle", type: "string", required: false, description: "Title for the reasoning session" }, { name: "sessionTags", type: "array", required: false, description: "Tags for cross-chat discovery" }, ]; /** * Generates the list_mcp_assets prompt content dynamically */ export function getListMcpAssetsContent(): string { return `# Thoughtbox MCP Server - Capabilities ## Overview **Package:** \`@kastalien-research/thoughtbox\` **MCP Name:** \`io.github.Kastalien-Research/thoughtbox\` Thoughtbox provides cognitive enhancement tools for LLM agents - infrastructure for structured reasoning, not intelligence. --- ## Tools ### 1. \`thoughtbox\` — Step-by-Step Reasoning Step-by-step thinking tool for complex problem-solving. - Supports forward thinking (1→N), backward thinking (N→1), branching, and revision - Automatic patterns cookbook at thought 1 and final thought - Use for multi-step analysis, planning, hypothesis generation, system design **Parameters:** | Parameter | Type | Required | Description | |-----------|------|----------|-------------| ${THOUGHTBOX_PARAMS.map(p => `| \`${p.name}\` | ${p.type} | ${p.required ? "Yes" : "No"} | ${p.description} |`).join("\n")} ### 2. \`notebook\` — Literate Programming Toolhost for interactive notebooks with JavaScript/TypeScript. **Operations (${NOTEBOOK_OPERATIONS.length}):** | Operation | Category | Description | |-----------|----------|-------------| ${NOTEBOOK_OPERATIONS.map(op => `| \`${op.name}\` | ${op.category} | ${op.description.split("\n")[0]} |`).join("\n")} **Templates:** ${AVAILABLE_TEMPLATES.map(t => `\`${t}\``).join(", ")} ### 3. \`mental_models\` — Structured Reasoning Access ${MENTAL_MODELS.length} mental models for structured reasoning. **Operations (${MENTAL_MODELS_OPERATIONS.length}):** | Operation | Category | Description | |-----------|----------|-------------| ${MENTAL_MODELS_OPERATIONS.map(op => `| \`${op.name}\` | ${op.category} | ${op.description.split("\n")[0]} |`).join("\n")} **Tags (${TAG_DEFINITIONS.length}):** | Tag | Description | |-----|-------------| ${TAG_DEFINITIONS.map(t => `| \`${t.name}\` | ${t.description} |`).join("\n")} **Mental Models (${MENTAL_MODELS.length}):** | Name | Title | Tags | |------|-------|------| ${MENTAL_MODELS.map(m => `| \`${m.name}\` | ${m.title} | ${m.tags.join(", ")} |`).join("\n")} --- ## Prompts | Prompt | Description | |--------|-------------| | \`list_mcp_assets\` | This prompt - overview of all capabilities | | \`interleaved-thinking\` | ${INTERLEAVED_THINKING_DESCRIPTION} | --- ## Resources ### Static Resources | URI | Description | |-----|-------------| | \`system://status\` | Notebook server health snapshot | | \`thoughtbox://notebook/operations\` | Notebook operations catalog (JSON) | | \`thoughtbox://patterns-cookbook\` | Thoughtbox reasoning patterns guide | | \`thoughtbox://architecture\` | Server architecture and implementation guide | | \`thoughtbox://mental-models/operations\` | Mental models catalog (JSON) | | \`thoughtbox://mental-models\` | Mental models root directory | ### Tag-based Resources ${TAG_DEFINITIONS.map(t => `- \`thoughtbox://mental-models/${t.name}\``).join("\n")} ### Resource Templates | URI Template | Description | |--------------|-------------| | \`thoughtbox://mental-models/{tag}/{model}\` | Browse mental models by tag | | \`thoughtbox://mental-models/{tag}\` | List models under a specific tag | | \`thoughtbox://interleaved/{mode}\` | IRCoT reasoning guides (research, analysis, development) | --- ## Quick Start ### Thoughtbox Reasoning \`\`\`javascript // Start a reasoning session thoughtbox({ thought: "Breaking down the problem into key decision areas...", thoughtNumber: 1, totalThoughts: 10, nextThoughtNeeded: true, sessionTitle: "Architecture Decision", sessionTags: ["architecture", "planning"] }) // Branch to explore alternatives thoughtbox({ thought: "Exploring approach A: Use SQL database...", thoughtNumber: 5, totalThoughts: 10, branchFromThought: 4, branchId: "sql-approach", nextThoughtNeeded: true }) \`\`\` ### Notebooks \`\`\`javascript // Create notebook notebook({ operation: "create", args: { title: "Data Analysis", language: "typescript" } }) // Add and run code notebook({ operation: "add_cell", args: { notebookId: "abc123", cellType: "code", content: "console.log('Hello!');", filename: "hello.ts" } }) notebook({ operation: "run_cell", args: { notebookId: "abc123", cellId: "cell456" } }) \`\`\` ### Mental Models \`\`\`javascript // List models by tag mental_models({ operation: "list_models", args: { tag: "debugging" } }) // Get specific model mental_models({ operation: "get_model", args: { model: "five-whys" } }) \`\`\` --- ## Integration Patterns ### Models → Reasoning 1. Use \`mental_models\` to retrieve a reasoning framework 2. Apply that framework using \`thoughtbox\` 3. Iterate and refine your approach ### Notebooks for Exploration 1. Use \`notebook\` for executable documentation 2. Combine with \`thoughtbox\` for reasoning about results 3. Export with \`export\` operation for persistence --- ## Summary Statistics - **Tools:** 3 (thoughtbox, notebook, mental_models) - **Notebook Operations:** ${NOTEBOOK_OPERATIONS.length} - **Mental Models Operations:** ${MENTAL_MODELS_OPERATIONS.length} - **Mental Models:** ${MENTAL_MODELS.length} - **Tags:** ${TAG_DEFINITIONS.length} - **Prompts:** 2 - **Static Resources:** 6+ - **Resource Templates:** 3 For comprehensive documentation, see \`src/CAPABILITIES.md\` `; }

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/glassBead-tc/Thoughtbox'

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