Facebook Publisher for VS Code
io.github.anthonyjbolo/mcp-fb-publisher
Safe Facebook Pages publishing with brand-voice, image-required & anti-duplication checks.
client:VS Code
transport:stdio
runtime:pypi
Install Facebook Publisher in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "meta-user-token",
"description": "META_USER_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "mcp-fb-publisher-config",
"description": "MCP_FB_PUBLISHER_CONFIG",
"password": true
},
{
"type": "promptString",
"id": "mcp-fb-publisher-config-json",
"description": "MCP_FB_PUBLISHER_CONFIG_JSON",
"password": true
},
{
"type": "promptString",
"id": "openai-api-key",
"description": "OPENAI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "fal-key",
"description": "FAL_KEY",
"password": true
}
],
"servers": {
"mcp-fb-publisher": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-fb-publisher"
],
"env": {
"META_USER_TOKEN": "${input:meta-user-token}",
"MCP_FB_PUBLISHER_CONFIG": "${input:mcp-fb-publisher-config}",
"MCP_FB_PUBLISHER_CONFIG_JSON": "${input:mcp-fb-publisher-config-json}",
"OPENAI_API_KEY": "${input:openai-api-key}",
"FAL_KEY": "${input:fal-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs