Post for Me MCP Pro for VS Code
io.github.helbertparanhos/postforme-mcp-pro
Publish, schedule and analyze social posts across 9 platforms via the Post for Me API.
client:VS Code
transport:stdio
runtime:npm
Install Post for Me MCP Pro in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "postforme-api-key",
"description": "POSTFORME_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "postforme-readonly",
"description": "POSTFORME_READONLY",
"password": true
}
],
"servers": {
"postforme-mcp-pro": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"postforme-mcp-pro"
],
"env": {
"POSTFORME_API_KEY": "${input:postforme-api-key}",
"POSTFORME_READONLY": "${input:postforme-readonly}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs