letmepost for VS Code
io.github.rosekamallove/letmepost
MCP server for letmepost.dev. Publish across 8 social platforms from any agent.
client:VS Code
transport:stdio
runtime:npm
Install letmepost in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "lmp-api-key",
"description": "LMP_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "lmp-api-base",
"description": "LMP_API_BASE",
"password": true
}
],
"servers": {
"letmepost": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@letmepost/mcp"
],
"env": {
"LMP_API_KEY": "${input:lmp-api-key}",
"LMP_API_BASE": "${input:lmp-api-base}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs