We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/apolosan/design_patterns_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
cli-command.ts•597 B
/**
* Command Pattern for CLI Operations
* Defines the interface for all CLI commands in the design patterns MCP server
*/
export interface CLICommand {
/** Command name used for identification and help */
readonly name: string;
/** Optional description for help text */
readonly description?: string;
/** Execute the command with optional arguments */
execute(args?: string[]): Promise<void>;
}
export type DBConfig = {
filename: string;
options?: {
readonly?: boolean;
fileMustExist?: boolean;
timeout?: number;
verbose?: (message: string) => void;
};
};