UNPKG

@sudocode-ai/mcp

Version:

MCP server for sudocode, git-native context management for AI-assisted development

26 lines 779 B
/** * MCP Server for sudocode * * This module sets up the MCP server with tools and resources. */ import { SudocodeClientConfig } from "./types.js"; export declare class SudocodeMCPServer { private server; private client; private config; private isInitialized; constructor(config?: SudocodeClientConfig); private setupHandlers; /** * Check for .sudocode directory and required files * Returns initialization status and handles auto-import if needed */ private checkForInit; /** * Check if sudocode is initialized in the working directory * This provides early warning to users without blocking server startup */ private checkInitialization; run(): Promise<void>; } //# sourceMappingURL=server.d.ts.map