@172ai/containers-mcp-server
Version:
MCP server for 172.ai container management platform - enables AI assistants to manage containers, builds, and files with comprehensive workflow prompts
30 lines • 654 B
TypeScript
#!/usr/bin/env node
/**
* Interactive setup for the 172.ai CLI Tool
*/
declare class MCPServerSetup {
private envPath;
constructor();
/**
* Run the setup process
*/
run(): Promise<void>;
/**
* Gather configuration from user input
*/
private gatherConfiguration;
/**
* Test connection with the provided configuration
*/
private testConnection;
/**
* Save configuration to .env file
*/
private saveConfiguration;
/**
* Create .env file content from configuration
*/
private createEnvContent;
}
export { MCPServerSetup };
//# sourceMappingURL=setup.d.ts.map