everything vs charlotte
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | charlotte by TickTockBent | |
|---|---|---|
| Stars | ★ 85,748 | ★ 142 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Browser AutomationWeb ScrapingDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
charlotte · Summary
Token-efficient browser MCP server that provides structured web access to AI agents.
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
charlotte · Use cases
- AI agents browsing the web with minimal token consumption
- Web automation that needs to avoid excessive API calls
- Web development and accessibility testing for AI systems
- Cost-effective web scraping for large language models
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-everythingcharlotte · Install
Installation
Charlotte is available on npm and Docker:
# Install with npm
npm install -g @ticktockbent/charlotte
# Or with Docker
docker pull ticktockbent/charlotte:alpineClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"charlotte": {
"command": "npx",
"args": ["@ticktockbent/charlotte"]
}
}
}