MCP Catalogs
Home

nextcloud-mcp-server vs ultimate_mcp_server

Side-by-side comparison to help you pick between these two MCP servers.

nextcloud-mcp-server
by cbcoutinho
ultimate_mcp_server
by Dicklesworthstone
Stars★ 223★ 149
30d uses
Score5185
Official
Categories
ProductivityCloud StorageAI / LLM Tools
AI / LLM ToolsBrowser AutomationFile System
LanguagePythonPython
Last committhis month2 mo ago

nextcloud-mcp-server · Summary

Production-ready MCP server connecting AI assistants to Nextcloud data with 110+ tools across 10+ apps.

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.

nextcloud-mcp-server · Use cases

  • AI-powered note creation and organization within Nextcloud through natural language commands
  • Calendar management with AI assistance for scheduling events and checking availability
  • Document processing with OCR and text extraction capabilities for file content analysis

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

nextcloud-mcp-server · Install

Installation

Quick Start with uvx
NEXTCLOUD_HOST=https://your.nextcloud.instance.com \
NEXTCLOUD_USERNAME=your_username \
NEXTCLOUD_PASSWORD=your_app_password \
  uvx nextcloud-mcp-server run --transport stdio
Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "nextcloud": {
      "command": "uvx",
      "args": ["nextcloud-mcp-server", "run", "--transport", "stdio"],
      "env": {
        "NEXTCLOUD_HOST": "https://your.nextcloud.instance.com",
        "NEXTCLOUD_USERNAME": "your_username",
        "NEXTCLOUD_PASSWORD": "your_app_password"
      }
    }
  }
}
Docker Deployment
docker run -p 127.0.0.1:8000:8000 --rm \
  -e NEXTCLOUD_HOST=https://your.nextcloud.instance.com \
  -e NEXTCLOUD_USERNAME=your_username \
  -e NEXTCLOUD_PASSWORD=your_app_password \
  ghcr.io/cbcoutinho/nextcloud-mcp-server:latest

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.