ultimate_mcp_server vs mcp-telegram
并排对比,帮你在这两个 MCP server 之间做选择。
ultimate_mcp_server by Dicklesworthstone | mcp-telegram by dryeab | |
|---|---|---|
| Stars | ★ 149 | ★ 243 |
| 30天用量 | — | — |
| 综合分 | 85 | 46 |
| 官方 | — | — |
| 分类 | AI / LLM 工具浏览器自动化本地文件系统 | 沟通协作AI / LLM 工具 |
| 实现语言 | Python | Python |
| 最近提交 | 2 个月前 | 11 个月前 |
ultimate_mcp_server · 概述
一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。
mcp-telegram · 概述
MCP服务器让语言模型能够与Telegram交互,处理消息、搜索和媒体操作。
ultimate_mcp_server · 使用场景
- 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
- 跨多个网站进行网页自动化和研究,通过浏览器控制
- 通过模型间的智能任务分配实现成本优化的 AI 工作流
mcp-telegram · 使用场景
- 通过AI代理自动化Telegram消息工作流
- 将Telegram通知集成到AI驱动的助手中
- 使用LLM分析或处理Telegram消息内容
ultimate_mcp_server · 安装
安装
- 克隆仓库:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- 安装依赖:
pip install -e .- 对于 Claude Desktop 集成,添加到 claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- 运行服务器:
python -m ultimate_mcp_servermcp-telegram · 安装
安装步骤
- 安装先决条件:
- Python 3.10 或更高版本 - uv(遵循[官方uv指南](https://github.com/astral-sh/uv#installation))
- 安装CLI工具:
uv tool install mcp-telegram- 使用您的Telegram账户进行身份验证:
mcp-telegram login- 在MCP客户端(如Claude Desktop)中配置:
{
"mcpServers": {
"mcp-telegram": {
"command": "mcp-telegram",
"args": ["start"],
"env": {
"API_ID": "<your_api_id>",
"API_HASH": "<your_api_hash>"
}
}
}
}