Sonilo Music & Sound Effects for VS Code
io.github.sonilo-ai/sonilo-mcp
Licensed soundtracks and sound effects matched to your video. Commercial use OK.
client:VS Code
transport:stdio
runtime:pypi
Install Sonilo Music & Sound Effects in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sonilo-api-key",
"description": "SONILO_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "sonilo-api-url",
"description": "SONILO_API_URL",
"password": true
},
{
"type": "promptString",
"id": "sonilo-mcp-base-path",
"description": "SONILO_MCP_BASE_PATH",
"password": true
},
{
"type": "promptString",
"id": "time-out-seconds",
"description": "TIME_OUT_SECONDS",
"password": true
}
],
"servers": {
"sonilo-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"sonilo-mcp"
],
"env": {
"SONILO_API_KEY": "${input:sonilo-api-key}",
"SONILO_API_URL": "${input:sonilo-api-url}",
"SONILO_MCP_BASE_PATH": "${input:sonilo-mcp-base-path}",
"TIME_OUT_SECONDS": "${input:time-out-seconds}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs