ðŽ 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.