erickwendel-contributions-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
erickwendel-contributions-mcp by ErickWendel | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 232 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 4 mo ago | this month |
erickwendel-contributions-mcp · Summary
A TypeScript MCP server providing tools to query Erick Wendel's contributions across different platforms with full MCP capabilities.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
erickwendel-contributions-mcp · Use cases
- Querying technical talks by year, language, or location
- Finding blog posts about specific topics like WebXR
- Accessing content statistics and generating activity summaries
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
erickwendel-contributions-mcp · Install
Quick Start with Claude Desktop
Add this configuration to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"erickwendel-contributions": {
"command": "npx",
"args": ["-y", "@erickwendel/contributions-mcp"]
}
}
}Local Development
- Clone the repository and install dependencies:
git clone https://github.com/ErickWendel/erickwendel-contributions-mcp.git
cd erickwendel-contributions-mcp
npm ci- Add this configuration for local development:
{
"mcpServers": {
"erickwendel-contributions": {
"command": "node",
"args": ["--experimental-strip-types", "ABSOLUTE_PATH_TO_PROJECT/src/index.ts"]
}
}
}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.