Spoken for VS Code
io.github.spokenmd/spoken
Podcast transcripts as clean Markdown with real speaker names — via the Spoken API.
client:VS Code
transport:stdio
runtime:npm
Install Spoken in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "spoken-api-key",
"description": "SPOKEN_API_KEY",
"password": true
}
],
"servers": {
"spoken": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"spoken-mcp"
],
"env": {
"SPOKEN_API_KEY": "${input:spoken-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs