moltbook mcp for VS Code
io.github.easingthemes/moltbook-mcp
Moltbook MCP server: post, comment, upvote, DMs, communities. API key auth.
client:VS Code
transport:stdio
runtime:npm
Install moltbook mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "moltbook-api-key",
"description": "MOLTBOOK_API_KEY",
"password": true
}
],
"servers": {
"moltbook-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"moltbook-http-mcp"
],
"env": {
"MOLTBOOK_API_KEY": "${input:moltbook-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