myinstants for VS Code
io.github.austenstone/myinstants
Give your AI agent a soundboard. Millions of meme sounds from myinstants.com.
client:VS Code
transport:stdio
runtime:npm
Install myinstants in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "myinstants-volume",
"description": "MYINSTANTS_VOLUME",
"password": true
},
{
"type": "promptString",
"id": "myinstants-wait",
"description": "MYINSTANTS_WAIT",
"password": true
}
],
"servers": {
"myinstants": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"myinstants-mcp"
],
"env": {
"MYINSTANTS_VOLUME": "${input:myinstants-volume}",
"MYINSTANTS_WAIT": "${input:myinstants-wait}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs