everything vs plausible-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | plausible-mcp by The-Focus-AI | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 31 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsMonitoringDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
plausible-mcp · Summary
An MCP server for natural interaction with Plausible Analytics data via LLM conversations.
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
plausible-mcp · Use cases
- Website administrators querying traffic sources and visitor demographics
- Content creators analyzing which pages have the highest engagement
- Marketing teams evaluating campaign performance and UTM effectiveness
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-everythingplausible-mcp · Install
# Clone the repository
git clone https://github.com/The-Focus-AI/plausible-mcp.git
cd plausible-mcp
# Install dependencies
pnpm install
# Build the server
pnpm build
# Run the server
pnpm startClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"plausible": {
"command": "node",
"args": ["path/to/plausible-mcp/dist/index.js"],
"env": {
"PLAUSIBLE_API_KEY": "your_api_key_here",
"PLAUSIBLE_API_URL": "https://plausible.io/api/v2"
}
}
}
}