everything vs grok-faf-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | grok-faf-mcp by Wolfe-Jam | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
grok-faf-mcp · Summary
Persistent project context for xAI Grok using IANA-registered .faf format with URL-based MCP server.
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
grok-faf-mcp · Use cases
- Persistent project context for Grok development sessions
- Zero-configuration MCP deployment via URL
- Project initialization and context scoring
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-everythinggrok-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"]
}
}
}