filesystem vs grok-faf-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | grok-faf-mcp by Wolfe-Jam | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
grok-faf-mcp · Summary
Persistent project context for xAI Grok using IANA-registered .faf format with URL-based MCP server.
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
grok-faf-mcp · Use cases
- Persistent project context for Grok development sessions
- Zero-configuration MCP deployment via URL
- Project initialization and context scoring
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.
grok-faf-mcp · Install
Installation
Option 1: Hosted (Instant)
Use the pre-deployed server:
https://grok-faf-mcp.vercel.app/sseOption 2: Self-Deploy (Vercel)
Click the Deploy with Vercel button in the README or deploy directly:
vercel github.com/Wolfe-Jam/grok-faf-mcpOption 3: Local Execution
npx grok-faf-mcpIntegration with Claude Desktop
Add to your Claude Desktop config.json:
{
"mcpServers": {
"grok-faf": {
"command": "npx",
"args": ["-y", "grok-faf-mcp"]
}
}
}