everything vs SageFs
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | SageFs by WillEhrendreich | |
|---|---|---|
| Stars | ★ 85,748 | ★ 64 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM Tools |
| Language | TypeScript | F# |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
SageFs · Summary
A live F# development engine with hot reload, live testing, and MCP integration for AI agents.
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
SageFs · Use cases
- AI-assisted F# development with direct code execution capabilities
- Live testing with immediate feedback on every save
- Cross-editor F# development with hot reloading support
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-everythingSageFs · Install
dotnet tool install --global SageFsFor MCP integration, add to Claude Desktop config:
{
"mcpServers": {
"sagefs": {
"command": "sagefs",
"args": ["mcp"]
}
}
}