MCP Catalogs
Home

go-mcp-server vs ultimate_mcp_server

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

go-mcp-server
by cbrgm
ultimate_mcp_server
by Dicklesworthstone
Stars★ 6★ 149
30d uses
Score3785
Official
Categories
AI / LLM ToolsDeveloper ToolsOther
AI / LLM ToolsBrowser AutomationFile System
LanguageGoPython
Last committhis month2 mo ago

go-mcp-server · Summary

A learning MCP server in Go that implements tea-related tools, resources, and prompts with stdio and HTTP transport options.

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.

go-mcp-server · Use cases

  • Educational tool for learning MCP implementation
  • Tea information retrieval system
  • Demo server for MCP protocol testing

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

go-mcp-server · Install

Installation

  1. Clone the repository:
git clone https://github.com/cbrgm/go-mcp-server.git
cd go-mcp-server
  1. Build the binary:
go build ./cmd/go-mcp-server
  1. Run the server:
# Default stdio transport
./go-mcp-server

# HTTP transport
./go-mcp-server -transport http -port 8080

**Claude Desktop Configuration:**

{
  "mcpServers": {
    "tea": {
      "command": "go",
      "args": ["run", "./cmd/go-mcp-server"],
      "cwd": "/path/to/go-mcp-server"
    }
  }
}

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.