UNPKG

sound-effects-mcp

Version:

MCP server that plays various sound effects for different situations

7 lines 283 B
export type SoundEffect = 'complete' | 'newtype' | 'error'; export declare function playSoundEffect(soundEffect: SoundEffect): Promise<void>; export declare function getSoundEffectList(): Array<{ name: SoundEffect; description: string; }>; //# sourceMappingURL=sound.d.ts.map