Skip to content
VS Code

myinstants mcp for VS Code

io.github.austenstone/myinstants-mcp

Give your AI agent a soundboard. Millions of meme sounds from myinstants.com.

client:VS Code transport:stdio runtime:npm

Install myinstants mcp 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-mcp": {
      "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

myinstants mcp in other clients