chittycan
Version:
Your completely autonomous network that grows with you - DNA ownership platform with encrypted vaults, PDX portability, and ChittyFoundation governance
30 lines • 753 B
TypeScript
/**
* MCP (Model Context Protocol) Server Management
*
* Manages local and remote MCP servers configured in ChittyCan.
*/
/**
* List configured MCP servers
*/
export declare function listMcpServers(): void;
/**
* Start an MCP server
*/
export declare function startMcpServer(name: string): void;
/**
* Stop an MCP server
*/
export declare function stopMcpServer(name: string): void;
/**
* Check MCP server status
*/
export declare function mcpServerStatus(name: string): void;
/**
* List tools available from an MCP server
*/
export declare function listMcpTools(name: string): Promise<void>;
/**
* Test connection to MCP server
*/
export declare function testMcpConnection(name: string): Promise<void>;
//# sourceMappingURL=mcp.d.ts.map