everything vs mcp-ts
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-ts by zonlabs | |
|---|---|---|
| Stars | ★ 85,748 | ★ 8 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-ts · Summary
A comprehensive TypeScript SDK with Python bridge for implementing MCP servers and clients with multiple storage backends.
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
mcp-ts · Use cases
- Building MCP servers with persistent storage for production applications
- Integrating MCP functionality into React and Vue applications
- Connecting local MCP servers to cloud-hosted AI agents
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-everythingmcp-ts · Install
Installation
TypeScript SDK
npm install @mcp-ts/sdkPython Gateway
pip install mcpassistant-gatewayClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-ts": {
"command": "npx",
"args": ["@mcp-ts/sdk", "server"],
"env": {
"MCP_TS_STORAGE_TYPE": "memory"
}
}
}
}