filesystem vs buttondown-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | buttondown-mcp by The-Focus-AI | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30d uses | — | — |
| Score | 77 | 31 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | CommunicationProductivityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
buttondown-mcp · Summary
MCP server for Buttondown newsletter service with CLI and programmatic API.
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.
buttondown-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"
}
}
}
}