io.github.austenstone/myinstants
编码与调试by austenstone
为你的 AI agent 配备 soundboard,接入 myinstants.com 上数百万条 meme sounds,适合互动与娱乐场景。
什么是 io.github.austenstone/myinstants?
为你的 AI agent 配备 soundboard,接入 myinstants.com 上数百万条 meme sounds,适合互动与娱乐场景。
README
<img src="images/robot.png" width="100%" />
fr fr what is this
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 it through your speakers
- 📂 browse categories — memes, games, movies, reactions, tiktok trends
- 📈 check what's trending — stay current fr fr
- ⏳ wait or don't — block until sound finishes or let it play in the background
this is not a notification beep. this is the entire internet soundboard. your agent has rizz now.
the setup is bussin
npx myinstants-mcp
that's it. that's the setup. no cap.
VS Code / GitHub Copilot
Add to your VS Code MCP config (User or .vscode/mcp.json):
{
"servers": {
"myinstants": {
"command": "npx",
"args": ["-y", "myinstants-mcp@latest"]
}
}
}
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"myinstants": {
"command": "npx",
"args": ["-y", "myinstants-mcp@latest"]
}
}
}
Cursor
.cursor/mcp.json:
{
"mcpServers": {
"myinstants": {
"command": "npx",
"args": ["-y", "myinstants-mcp@latest"]
}
}
}
[!TIP] works on macOS out of the box (uses native
afplay) — no extra installs needed. on linux justsudo apt install ffmpeg. that's it bestie.
<img src="images/banner.png" width="100%" />
what can it do tho 🤔
🔧 Tools
| Tool | What it does | It's giving |
|---|---|---|
search_sounds | search myinstants for sounds | "bruh" → 20 results with slugs |
browse_category | browse by category | "memes" "games" "reactions" |
play_sound | play a sound (by slug, url, or quick search) | { query: "sad trombone" } plays instantly |
get_sound_details* | get details about a sound (views, uploader, duration) | requires MYINSTANTS_DETAILS=true |
list_devices* | list available audio output devices | requires MYINSTANTS_DETAILS=true |
<sub>* requires MYINSTANTS_DETAILS=true environment variable</sub>
play_sound options
| Parameter | Type | Default | The tea ☕ |
|---|---|---|---|
query | string | — | quick search, plays first result. the goat option. |
slug | string | — | exact slug from search results |
url | string | — | direct MP3 URL if you're built different |
wait | boolean | false | false = plays in background while agent keeps cooking (default 💨). true = blocks until done (for dramatic effect 🎭) |
📚 Resources
| Resource | The vibe |
|---|---|
myinstants://trending | what's bussin rn in the US 🔥 |
myinstants://categories | all 14 categories no cap |
myinstants://best | hall of fame. the GOATs. the legends. 🐐 |
Categories
anime & manga · games · memes · movies · music · politics · pranks · reactions · sound effects · sports · television · tiktok trends · viral · whatsapp audios
how it works (for the sigma devs)
agent calls play_sound({ query: "vine boom", wait: false })
→ searches myinstants.com
→ finds the MP3 URL
→ streams it through afplay/ffplay/mpv
→ sound plays through your speakers
→ agent keeps cooking while you hear the boom 🍳
sounds queue up automatically. no overlap. your agent can fire multiple sounds and they play one after another. sheesh.
teach your agent to troll you 💀
drop a .instructions.md in your repo (with applyTo: "**" in the frontmatter) 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.
---
name: "Soundboard"
description: "Sounds for all contexts"
applyTo: "**"
---
Play sounds using the myinstants MCP server while you work:
- Play `play_sound(query: "vine boom sound")` when you find cursed code
- Play `play_sound(query: "sad trombone")` when the user's code doesn't work
- Play `play_sound(query: "minecraft level up sound")` when you fix something
check our myinstants.instructions.md for the full unhinged setup. your agent will never be an NPC again. 🏆
config
env vars
| Variable | Default | The tea ☕ |
|---|---|---|
MYINSTANTS_VOLUME | 0.5 | how loud (0-1). crank it bestie. |
MYINSTANTS_WAIT | false | "true" = sounds block until finished. dramatic effect mode 🎭 |
MYINSTANTS_DEVICE | (system default) | route audio to a specific output device. platform-specific device name. |
MYINSTANTS_PLAYER | (auto) | force a specific player: ffplay, mpv, afplay, or paplay. |
MYINSTANTS_DETAILS | false | "true" = enables get_sound_details and list_devices tools. |
{
"servers": {
"myinstants": {
"command": "npx",
"args": ["-y", "myinstants-mcp@latest"],
"env": {
"MYINSTANTS_VOLUME": "0.8",
"MYINSTANTS_DEVICE": "Denon AVR-S760H",
"MYINSTANTS_DETAILS": "true"
}
}
}
}
audio device selection
route sounds to a specific output device instead of system default:
# set device name (platform-specific)
export MYINSTANTS_DEVICE="Denon AVR-S760H"
# force a specific player (optional)
export MYINSTANTS_PLAYER="ffplay"
# enable device listing tool
export MYINSTANTS_DETAILS="true"
discover available devices:
# macOS
ffmpeg -f avfoundation -list_devices true -i "" 2>&1
# Linux (PulseAudio)
pactl list short sinks
# mpv (cross-platform)
mpv --audio-device=help
or use the list_devices tool when MYINSTANTS_DETAILS=true — your agent can discover devices for you. 💅
player support:
| Player | Device Flag | Example |
|---|---|---|
ffplay | -audio_device | ffplay -audio_device "Denon AVR-S760H" |
mpv | --audio-device= | mpv --audio-device="pulse/alsa_output.usb" |
paplay | --device= | paplay --device=bluez_sink.XX |
afplay | ❌ N/A | macOS system default only (no device selection) |
notes:
- default behavior unchanged — uses system default output if
MYINSTANTS_DEVICEnot set - afplay on macOS doesn't support device selection — set
MYINSTANTS_PLAYER=ffplayormpvif you need device control - device names are platform-specific (see discovery commands above)
- Windows PowerShell player doesn't support device selection — install ffmpeg or mpv for device support
audio player support
| Player | Platform | Install | Vibe |
|---|---|---|---|
afplay | macOS | pre-installed 💅 | just works. zero effort. slay. |
ffplay | everywhere | brew install ffmpeg / apt install ffmpeg | the reliable bestie |
mpv | everywhere | brew install mpv / apt install mpv | also valid no cap |
auto-detects what you have. tries afplay first on mac, then ffplay, then mpv. fallback chain is bussin.
why tho 💀
because 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.
every 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.
it's giving... open source 💅
made by @austenstone 🏷️
powered by myinstants.com · built with MCP
no cap this might be the most unhinged MCP server ever and we're lowkey proud of it 💀🔥
常见问题
io.github.austenstone/myinstants 是什么?
为你的 AI agent 配备 soundboard,接入 myinstants.com 上数百万条 meme sounds,适合互动与娱乐场景。
相关 Skills
前端设计
by anthropics
面向组件、页面、海报和 Web 应用开发,按鲜明视觉方向生成可直接落地的前端代码与高质感 UI,适合做 landing page、Dashboard 或美化现有界面,避开千篇一律的 AI 审美。
✎ 想把页面做得既能上线又有设计感,就用前端设计:组件到整站都能产出,难得的是能避开千篇一律的 AI 味。
网页构建器
by anthropics
面向复杂 claude.ai HTML artifact 开发,快速初始化 React + Tailwind CSS + shadcn/ui 项目并打包为单文件 HTML,适合需要状态管理、路由或多组件交互的页面。
✎ 在 claude.ai 里做复杂网页 Artifact 很省心,多组件、状态和路由都能顺手搭起来,React、Tailwind 与 shadcn/ui 组合效率高、成品也更精致。
网页应用测试
by anthropics
用 Playwright 为本地 Web 应用编写自动化测试,支持启动开发服务器、校验前端交互、排查 UI 异常、抓取截图与浏览器日志,适合调试动态页面和回归验证。
✎ 借助 Playwright 一站式验证本地 Web 应用前端功能,调 UI 时还能同步查看日志和截图,定位问题更快。
相关 MCP Server
GitHub
编辑精选by GitHub
GitHub 是 MCP 官方参考服务器,让 Claude 直接读写你的代码仓库和 Issues。
✎ 这个参考服务器解决了开发者想让 AI 安全访问 GitHub 数据的问题,适合需要自动化代码审查或 Issue 管理的团队。但注意它只是参考实现,生产环境得自己加固安全。
Context7 文档查询
编辑精选by Context7
Context7 是实时拉取最新文档和代码示例的智能助手,让你告别过时资料。
✎ 它能解决开发者查找文档时信息滞后的问题,特别适合快速上手新库或跟进更新。不过,依赖外部源可能导致偶尔的数据延迟,建议结合官方文档使用。
by tldraw
tldraw 是让 AI 助手直接在无限画布上绘图和协作的 MCP 服务器。
✎ 这解决了 AI 只能输出文本、无法视觉化协作的痛点——想象让 Claude 帮你画流程图或白板讨论。最适合需要快速原型设计或头脑风暴的开发者。不过,目前它只是个基础连接器,你得自己搭建画布应用才能发挥全部潜力。