superaugment
Version:
Enterprise-grade MCP server with world-class C++ analysis, robust error handling, and production-ready architecture for VS Code Augment
32 lines • 877 B
TypeScript
import { Server } from '@modelcontextprotocol/sdk/server/index.js';
/**
* SuperAugment MCP Server implementation
*
* Provides development tools, cognitive personas, and intelligent workflows
* for VS Code Augment through the Model Context Protocol.
*/
export declare class SuperAugmentServer {
private server;
private toolManager;
private resourceManager;
private promptManager;
private configManager;
constructor(server: Server);
/**
* Initialize the SuperAugment server
*/
initialize(): Promise<void>;
/**
* Register tool-related MCP handlers
*/
private registerToolHandlers;
/**
* Register resource-related MCP handlers
*/
private registerResourceHandlers;
/**
* Register prompt-related MCP handlers
*/
private registerPromptHandlers;
}
//# sourceMappingURL=server.d.ts.map