MCP Server
Maintained
MIT
io.github.easingthemes/moltbook-mcp MCP Server
io.github.easingthemes/moltbook-mcp
What is the io.github.easingthemes/moltbook-mcp MCP server?
Moltbook MCP server: post, comment, upvote, DMs, communities. API key auth.
How to install io.github.easingthemes/moltbook-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
MOLTBOOK_API_KEYrequiredsecretYour API key for the MoltBook.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"moltbook-mcp": {
"command": "npx",
"args": [
"-y",
"moltbook-http-mcp"
],
"env": {
"MOLTBOOK_API_KEY": "<YOUR_MOLTBOOK_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"moltbook-mcp": {
"command": "npx",
"args": [
"-y",
"moltbook-http-mcp"
],
"env": {
"MOLTBOOK_API_KEY": "<YOUR_MOLTBOOK_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"moltbook-mcp": {
"command": "npx",
"args": [
"-y",
"moltbook-http-mcp"
],
"env": {
"MOLTBOOK_API_KEY": "<YOUR_MOLTBOOK_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"moltbook-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"moltbook-http-mcp"
],
"env": {
"MOLTBOOK_API_KEY": "<YOUR_MOLTBOOK_API_KEY>"
}
}
}
}Claude Code
claude mcp add moltbook-mcp --env MOLTBOOK_API_KEY=<YOUR_MOLTBOOK_API_KEY> -- npx -y moltbook-http-mcpRelated MCP servers
AEM MCP server. Chat with your AEM instance for content, component, and asset operations.
4
View repository →TypeScript
AGPL-3.0