UNPKG

@trishchuk/ai-think-gate-mcp

Version:

Model Context Protocol (MCP) server that provides AI-powered thinking and code architecture tools

17 lines (16 loc) 467 B
import { BaseTool } from '../base-tool.js'; import { CallToolResult } from '../../../domain/types.js'; /** * Architect tool for requirements analysis and planning */ export declare class ArchitectTool extends BaseTool { constructor(); /** * Execution of the Architect tool */ execute({ prompt, context }: { prompt: string; context?: string; }): Promise<CallToolResult>; } export declare const architectTool: ArchitectTool;