ultimate_mcp_server vs google-docs-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | google-docs-mcp by jag-k | |
|---|---|---|
| Stars | ★ 149 | ★ 0 |
| 30d uses | — | — |
| Score | 85 | 33 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | ProductivityAI / LLM ToolsCloud Storage |
| Language | Python | Python |
| Last commit | 2 mo ago | 8 mo ago |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
google-docs-mcp · Summary
An MCP server for Google Docs that enables reading documents, managing comments, and text manipulation via OAuth authentication.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_servergoogle-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 server