dead drop content for VS Code
io.github.holmesclaw-hash/dead-drop-content
Publish-ready articles on demand. Send a topic, get back SEO-optimized content with images.
client:VS Code
transport:stdio
runtime:npm
Install dead drop content in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ollama-url",
"description": "OLLAMA_URL",
"password": true
},
{
"type": "promptString",
"id": "unsplash-access-key",
"description": "UNSPLASH_ACCESS_KEY",
"password": true
}
],
"servers": {
"dead-drop-content": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"dead-drop-mcp"
],
"env": {
"OLLAMA_URL": "${input:ollama-url}",
"UNSPLASH_ACCESS_KEY": "${input:unsplash-access-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs