everything vs searchcraft-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | searchcraft-mcp-server by searchcraft-inc | |
|---|---|---|
| Stars | ★ 85,748 | ★ 7 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsSearchAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 3 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
searchcraft-mcp-server · Summary
A TypeScript MCP server that integrates Searchcraft's developer search engine for indexing documents, managing search operations, and creating search applications.
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
searchcraft-mcp-server · Use cases
- Creating search applications from JSON datasets using natural language prompts
- Managing document indexes and search configurations through MCP clients
- Automating search analytics and performance monitoring workflows
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-everythingsearchcraft-mcp-server · Install
Installation
npm install -g @searchcraft/mcp-serverClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"searchcraft": {
"command": "npx",
"args": ["@searchcraft/mcp-server"]
}
}
}