bulkpublish for VS Code
io.github.azeemkafridi/bulkpublish
Publish, schedule, and manage social media across 11 platforms via MCP.
client:VS Code
transport:stdio
runtime:npm
Install bulkpublish in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "bulkpublish-api-key",
"description": "BULKPUBLISH_API_KEY",
"password": true
}
],
"servers": {
"bulkpublish": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@bulkpublish/mcp-server"
],
"env": {
"BULKPUBLISH_API_KEY": "${input:bulkpublish-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