google-docs-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
google-docs-mcp by jag-k | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 33 | 77 |
| Official | — | ✓ |
| Categories | ProductivityAI / LLM ToolsCloud Storage | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 8 mo ago | this month |
google-docs-mcp · Summary
An MCP server for Google Docs that enables reading documents, managing comments, and text manipulation via OAuth authentication.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
google-docs-mcp · Use cases
- Automate document processing tasks by reading content and generating reports
- Integrate Google Docs with AI assistants for enhanced document management
- Create workflows that interact with comments and track document changes
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
google-docs-mcp · Install
Installation
Using CLI (recommended):
# Install the package
pip install google-docs-mcp
# Authorize
google-docs-mcp auth authorize
# Start server
google-docs-mcp serverClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"google_docs_mcp": {
"command": "google-docs-mcp",
"args": ["server"]
}
}
}Using uv:
# Install with uv
uv add google-docs-mcp
# Authorize
uv run google_docs_mcp auth authorize
# Start server
uv run google_docs_mcp servereverything · 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