filesystem vs github-brain
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | github-brain by wham | |
|---|---|---|
| Stars | ★ 85,748 | ★ 75 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | GitHubDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | 3 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
github-brain · Summary
GitHub Brain MCP server summarizes GitHub discussions, issues, and PRs with local database for fast responses.
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
github-brain · Use cases
- Summarizing GitHub discussions and pull requests for team meetings
- Analyzing user contributions in a specific time period
- Creating efficient reports on GitHub activities without hitting API limits
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.
github-brain · Install
npm i -g github-brainOr with npx:
npx github-brain@latestMCP Configuration
Claude Desktop
Add to Claude MCP configuration:
{
"mcpServers": {
"github-brain": {
"type": "stdio",
"command": "github-brain",
"args": ["mcp"],
"env": {
"ORGANIZATION": "your-org"
}
}
}