MCP Catalogs
Home

ultimate_mcp_server vs line-bot-mcp-server

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

ultimate_mcp_server
by Dicklesworthstone
line-bot-mcp-server
by line
Stars★ 149★ 583
30d uses
Score8551
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
CommunicationProductivityAI / LLM Tools
LanguagePythonTypeScript
Last commit2 mo agothis month

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.

line-bot-mcp-server · Summary

LINE Bot MCP Server connects AI agents to LINE Official Accounts via 12 tools for messaging, profile retrieval, and rich menu management.

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

line-bot-mcp-server · Use cases

  • Automated customer support chatbot for LINE Official Account
  • Broadcasting promotional messages to all LINE followers
  • Creating interactive rich menus for enhanced user experience

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

line-bot-mcp-server · Install

Installation

Prerequisites

  • Node.js v20 or later
  • LINE Official Account with Messaging API enabled

Step 1: Get LINE Credentials

  1. Create a LINE Official Account at https://developers.line.biz/en/docs/messaging-api/getting-started/#create-oa
  2. Enable Messaging API for your account
  3. Get your Channel Access Token: https://developers.line.biz/en/docs/basics/channel-access-token/#long-lived-channel-access-token
  4. Get your Destination User ID: https://developers.line.biz/en/docs/messaging-api/getting-user-ids/#get-own-user-id

Step 2: Install with npx

Add to your Claude Desktop config:

{
  "mcpServers": {
    "line-bot": {
      "command": "npx",
      "args": [
        "@line/line-bot-mcp-server"
      ],
      "env": {
        "CHANNEL_ACCESS_TOKEN": "YOUR_TOKEN",
        "DESTINATION_USER_ID": "YOUR_USER_ID"
      }
    }
  }
}

Step 3: Install with Docker

docker run -i --rm -e CHANNEL_ACCESS_TOKEN="YOUR_TOKEN" -e DESTINATION_USER_ID="YOUR_USER_ID" line/line-bot-mcp-server
Comparison generated from public README + GitHub signals. Last updated automatically.