everything vs MCPApp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | MCPApp by tanaikech | |
|---|---|---|
| Stars | ★ 85,748 | ★ 47 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
MCPApp · Summary
Google Apps Script-based MCP server implementation for AI clients with tools and prompts support.
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
MCPApp · Use cases
- Building AI assistants that interact with Google services via GAS
- Creating MCP clients that leverage Google Apps Script functionality
- Developing standardized interfaces between AI systems and Google Workspace
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-everythingMCPApp · Install
Installation
- Clone or download the repository
- Deploy as a Google Apps Script web app
- Set up appropriate permissions for Google services
- Configure the access key in the initialization
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"mcpapp": {
"command": "curl",
"args": ["-L", "YOUR_MCP_SERVER_URL"]
}
}
}