everything vs ToolsForMCPServer
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | ToolsForMCPServer by tanaikech | |
|---|---|---|
| Stars | ★ 85,748 | ★ 105 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsProductivityAI / LLM Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 5 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ToolsForMCPServer · Summary
An MCP server built with Google Apps Script providing 160+ tools for Google Workspace integration.
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
ToolsForMCPServer · Use cases
- Automating complex multi-step tasks within Google Workspace through Gemini CLI
- Creating custom AI agents with access to Google services using MCP clients
- Revitalizing existing Google Apps Script snippets as MCP tools
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-everythingToolsForMCPServer · Install
Installation
- Create a new Google Apps Script project at [script.google.com](https://script.google.com/home/projects/create)
- Install the required libraries:
- MCPApp (Project Key: 1TlX_L9COAriBlAYvrMLiRFQ5WVf1n0jChB6zHamq2TNwuSbVlI5sBUzh) - ToolsForMCPServer (Project Key: 1lnE7UL1jQgPDbTB9yjhiwZM0SaS9MObhzvWUWb_t8FisO6A3bLepvM2j)
- Add the provided script to your project
- Deploy as a Web App with 'Execute as: Me' and 'Who has access: Anyone'
- Configure Gemini CLI by adding this to your settings.json:
{
"mcpServers": {
"gas_web_apps": {
"command": "npx",
"args": [
"mcp-remote",
"https://script.google.com/macros/s/###/exec?accessKey=sample"
],
"env": {}
}
}
}