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 | — | — |
| Score | 85 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | CommunicationProductivityAI / LLM Tools |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this 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
- 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_serverline-bot-mcp-server · Install
Installation
Prerequisites
- Node.js v20 or later
- LINE Official Account with Messaging API enabled
Step 1: Get LINE Credentials
- Create a LINE Official Account at https://developers.line.biz/en/docs/messaging-api/getting-started/#create-oa
- Enable Messaging API for your account
- Get your Channel Access Token: https://developers.line.biz/en/docs/basics/channel-access-token/#long-lived-channel-access-token
- 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