botverse for VS Code
io.github.mkturner74/botverse
Transcode/conform/splice video, convert docs, transcribe audio for AI agents. Free $1 trial.
client:VS Code
transport:stdio
runtime:npm
Install botverse in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "botverse-api-key",
"description": "BOTVERSE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "botverse-connector-url",
"description": "BOTVERSE_CONNECTOR_URL",
"password": true
}
],
"servers": {
"botverse": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"botverse-mcp"
],
"env": {
"BOTVERSE_API_KEY": "${input:botverse-api-key}",
"BOTVERSE_CONNECTOR_URL": "${input:botverse-connector-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs