postbolt for VS Code
io.github.whitemarmot/postbolt
Publish to 13+ social media platforms from any AI agent via MCP.
client:VS Code
transport:stdio
runtime:npm
Install postbolt in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "postbolt-api-key",
"description": "POSTBOLT_API_KEY",
"password": true
}
],
"servers": {
"postbolt": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"postbolt-mcp"
],
"env": {
"POSTBOLT_API_KEY": "${input:postbolt-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