Initial commit: Suno MCP server with 24 tools, proxy support, and opencode skill

This commit is contained in:
OpenCode
2026-07-13 11:31:28 +07:00
commit 10548187f4
32 changed files with 4031 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { SunoClient } from './client';
export declare class ToolHandlers {
private readonly client;
constructor(client: SunoClient);
handle(name: string, args: unknown): Promise<{
content: {
type: string;
text: string;
}[];
}>;
}
//# sourceMappingURL=handlers.d.ts.map