๐ด myinstants-mcp give your AI agent a soundboard. no cap. millions of sound buttons ยท zero config ยท just vibes โจ an MCP server that connects AI agents to myinstants.com โ the internet's largest soundboard. millions of meme sounds, vine booms, fart noises, anime clips, gaming sfx, whatever you need bestie. your AI agent can now: - ๐ search any sound on myinstants - ๐ด smash that button and play i
Add this skill
npx mdskills install austenstone/myinstants-mcpCreative soundboard integration with clear setup, comprehensive tool docs, and solid functionality
1<h1 align="center">๐ด myinstants-mcp</h1>23<p align="center">4 <strong>give your AI agent a soundboard. no cap.</strong><br/>5 <sub>millions of sound buttons ยท zero config ยท just vibes โจ</sub>6</p>78<p align="center">9 <a href="https://www.npmjs.com/package/myinstants-mcp"><img src="https://img.shields.io/npm/v/myinstants-mcp?style=flat-square&color=red" alt="npm version" /></a>10 <a href="https://www.npmjs.com/package/myinstants-mcp"><img src="https://img.shields.io/npm/dm/myinstants-mcp?style=flat-square&color=orange" alt="npm downloads" /></a>11 <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/license-MIT-blue?style=flat-square" alt="license" /></a>12</p>1314---1516<img src="images/robot.png" width="100%" />1718## fr fr what is this1920an [MCP](https://modelcontextprotocol.io) server that connects AI agents to [myinstants.com](https://www.myinstants.com) โ the internet's largest soundboard. millions of meme sounds, vine booms, fart noises, anime clips, gaming sfx, whatever you need bestie.2122your AI agent can now:2324- ๐ **search** any sound on myinstants25- ๐ด **smash that button** and play it through your speakers26- ๐ **browse categories** โ memes, games, movies, reactions, tiktok trends27- ๐ **check what's trending** โ stay current fr fr28- โณ **wait or don't** โ block until sound finishes or let it play in the background2930this is not a notification beep. this is the entire internet soundboard. your agent has rizz now.3132## the setup is bussin3334```bash35npx myinstants-mcp36```3738that's it. that's the setup. no cap.3940### VS Code / GitHub Copilot4142Add to your VS Code MCP config (User or `.vscode/mcp.json`):4344```json45{46 "servers": {47 "myinstants": {48 "command": "npx",49 "args": ["-y", "myinstants-mcp@latest"]50 }51 }52}53```5455### Claude Desktop5657`~/Library/Application Support/Claude/claude_desktop_config.json`:5859```json60{61 "mcpServers": {62 "myinstants": {63 "command": "npx",64 "args": ["-y", "myinstants-mcp@latest"]65 }66 }67}68```6970### Cursor7172`.cursor/mcp.json`:7374```json75{76 "mcpServers": {77 "myinstants": {78 "command": "npx",79 "args": ["-y", "myinstants-mcp@latest"]80 }81 }82}83```8485> [!TIP]86> works on **macOS** out of the box (uses native `afplay`) โ no extra installs needed. on linux just `sudo apt install ffmpeg`. that's it bestie.8788---8990<img src="images/banner.png" width="100%" />9192## what can it do tho ๐ค9394### ๐ง Tools9596| Tool | What it does | It's giving |97|------|-------------|---------|98| `search_sounds` | search myinstants for sounds | `"bruh"` โ 20 results with slugs |99| `browse_category` | browse by category | `"memes"` `"games"` `"reactions"` |100| `play_sound` | play a sound (by slug, url, or quick search) | `{ query: "sad trombone" }` plays instantly |101102#### `play_sound` options103104| Parameter | Type | Default | The tea โ |105|-----------|------|---------|-----------|106| `query` | string | โ | quick search, plays first result. the goat option. |107| `slug` | string | โ | exact slug from search results |108| `url` | string | โ | direct MP3 URL if you're built different |109| `wait` | boolean | `false` | `false` = plays in background while agent keeps cooking (default ๐จ). `true` = blocks until done (for dramatic effect ๐ญ) |110111### ๐ Resources112113| Resource | The vibe |114|----------|-------------|115| `myinstants://trending` | what's bussin rn in the US ๐ฅ |116| `myinstants://categories` | all 14 categories no cap |117| `myinstants://best` | hall of fame. the GOATs. the legends. ๐ |118119### Categories120121`anime & manga` ยท `games` ยท `memes` ยท `movies` ยท `music` ยท `politics` ยท `pranks` ยท `reactions` ยท `sound effects` ยท `sports` ยท `television` ยท `tiktok trends` ยท `viral` ยท `whatsapp audios`122123## how it works (for the sigma devs)124125```126agent calls play_sound({ query: "vine boom", wait: false })127 โ searches myinstants.com128 โ finds the MP3 URL129 โ streams it through afplay/ffplay/mpv130 โ sound plays through your speakers131 โ agent keeps cooking while you hear the boom ๐ณ132```133134sounds queue up automatically. no overlap. your agent can fire multiple sounds and they play one after another. sheesh.135136## teach your agent to troll you ๐137138drop a `.github/copilot-instructions.md` in your repo and your agent will play sounds **while it works**. imagine: vine boom when it finds a bug. sad trombone when your tests fail. rick roll mid-code-review for absolutely no reason.139140```markdown141# in your .github/copilot-instructions.md142143Play sounds using the myinstants MCP server while you work:144- Play `play_sound(query: "vine boom sound")` when you find cursed code145- Play `play_sound(query: "sad trombone")` when the user's code doesn't work146- Play `play_sound(query: "minecraft level up sound")` when you fix something147```148149check our [copilot-instructions.md](.github/copilot-instructions.md) for the full unhinged setup. your agent will never be an NPC again. ๐150151## config152153### env vars154155| Variable | Default | The tea โ |156|----------|---------|------|157| `MYINSTANTS_VOLUME` | `0.5` | how loud (0-1). crank it bestie. |158| `MYINSTANTS_WAIT` | `false` | `"true"` = sounds block until finished. dramatic effect mode ๐ญ |159160```json161{162 "servers": {163 "myinstants": {164 "command": "npx",165 "args": ["-y", "myinstants-mcp@latest"],166 "env": {167 "MYINSTANTS_VOLUME": "0.8"168 }169 }170 }171}172```173174### audio player support175176| Player | Platform | Install | Vibe |177|--------|----------|---------|------|178| `afplay` | macOS | pre-installed ๐ | just works. zero effort. slay. |179| `ffplay` | everywhere | `brew install ffmpeg` / `apt install ffmpeg` | the reliable bestie |180| `mpv` | everywhere | `brew install mpv` / `apt install mpv` | also valid no cap |181182auto-detects what you have. tries `afplay` first on mac, then `ffplay`, then `mpv`. fallback chain is bussin.183184## why tho ๐185186because your AI agent should be able to hit you with a vine boom when the code compiles. because sad trombone when tests fail is objectively correct. because the bruh button exists and your agent deserves to press it. this is not delulu โ this is the future.187188every other MCP sound server plays one notification beep. **one beep.** that's giving NPC energy. we have millions of sounds. the entire internet soundboard. main character behavior only.189190## it's giving... open source ๐191192made by [@austenstone](https://github.com/austenstone) ๐ท๏ธ193194powered by [myinstants.com](https://www.myinstants.com) ยท built with [MCP](https://modelcontextprotocol.io)195196no cap this might be the most unhinged MCP server ever and we're lowkey proud of it ๐๐ฅ197
Full transparency โ inspect the skill content before installing.