mcp-use-ts vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-use-ts by mcp-use | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 174 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 5 mo ago | this month |
mcp-use-ts · Summary
Complete TypeScript framework for MCP with client/server SDKs, React hooks, and built-in debugging tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-use-ts · Use cases
- Building custom AI agents that can interact with multiple MCP servers simultaneously
- Creating MCP servers with rich UI components and React widgets
- Debugging and testing MCP servers with the built-in web inspector
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-use-ts · Install
Installation
Quick Start
# Create a new MCP application
npx create-mcp-use-app my-mcp-app
# Navigate to your project
cd my-mcp-app
# Start development
npm run devUsing with Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-use": {
"command": "npx",
"args": ["-y", "@mcp-use/cli", "dev"]
}
}
}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