everything vs buttondown-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | buttondown-mcp by The-Focus-AI | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30d uses | — | — |
| Score | 77 | 31 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | CommunicationProductivityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
buttondown-mcp · Summary
MCP server for Buttondown newsletter service with CLI and programmatic API.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
buttondown-mcp · Use cases
- Newsletter creators managing drafts and scheduling through AI assistants
- Automating email marketing campaigns with LLM integration
- Tracking newsletter performance analytics via AI tools
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingbuttondown-mcp · Install
# Install using pnpm (recommended)
pnpm install
# Or using npm
npm install
# Or using yarn
yarn install
# Start the MCP server
pnpm mcp:startFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"buttondown": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"BUTTONDOWN_API_KEY": "your_api_key"
}
}
}
}