websimm vs everything
Side-by-side comparison to help you pick between these two MCP servers.
websimm by gigachadtrey | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsWeb Scraping | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 1 mo ago | this month |
websimm · Summary
Comprehensive MCP server for WebSim API, providing access to projects, users, feeds, assets, and comments with robust pagination and error handling.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
websimm · Use cases
- Content creators browsing trending projects and assets
- Developers integrating WebSim data into their applications
- Community managers monitoring user activity and engagement
- Researchers analyzing WebSim's content ecosystem
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
websimm · Install
Installation
- Clone the repository:
git clone https://github.com/minimax/websim-mcp-server.git
cd websim-mcp-server- Install dependencies:
npm install- Configure your MCP client:
Claude Desktop
Add to your Claude Desktop configuration:
{
"mcpServers": {
"websim": {
"command": "node",
"args": ["/path/to/websim-mcp-server/server.js"],
"env": {}
}
}
}Generic MCP Setup
Copy mcp.json to your MCP configuration directory:
cp mcp.json ~/.config/claude/mcp-servers/websim.json- Run the server:
npm starteverything · 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