Content for VS Code
io.github.latentnoise/content
Turn URLs, files and text into media, transcripts, summaries, translations and PDF.
client:VS Code
transport:stdio
runtime:pypi
Install Content in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "content-api-url",
"description": "CONTENT_API_URL",
"password": true
},
{
"type": "promptString",
"id": "content-mcp-download-dir",
"description": "CONTENT_MCP_DOWNLOAD_DIR",
"password": true
}
],
"servers": {
"content": {
"type": "stdio",
"command": "uvx",
"args": [
"content-mcp"
],
"env": {
"CONTENT_API_URL": "${input:content-api-url}",
"CONTENT_MCP_DOWNLOAD_DIR": "${input:content-mcp-download-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs