graphlit-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
graphlit-mcp-server by graphlit | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 375 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | Knowledge GraphDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 4 mo ago | this month |
graphlit-mcp-server · Summary
MCP server connecting Graphlit platform with rich tools for knowledge management and RAG across various data sources.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
graphlit-mcp-server · Use cases
- Building a centralized knowledge base from multiple developer and product management tools
- Implementing RAG capabilities with content from various sources like Slack, GitHub, and Notion
- Creating AI-powered search across documents, web pages, and communications
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
graphlit-mcp-server · Install
Install the Graphlit MCP Server via npx:
npx -y graphlit-mcp-serverFor Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"graphlit": {
"command": "npx",
"args": ["-y", "graphlit-mcp-server"],
"env": {
"GRAPHLIT_ORGANIZATION_ID": "your-organization-id",
"GRAPHLIT_ENVIRONMENT_ID": "your-environment-id",
"GRAPHLIT_JWT_SECRET": "your-jwt-secret"
}
}
}
}Required environment variables:
GRAPHLIT_ORGANIZATION_IDGRAPHLIT_ENVIRONMENT_IDGRAPHLIT_JWT_SECRET
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-everything