ultimate_mcp_server vs TAM-MCP-Server
并排对比,帮你在这两个 MCP server 之间做选择。
ultimate_mcp_server by Dicklesworthstone | TAM-MCP-Server by gvaibhav | |
|---|---|---|
| Stars | ★ 149 | ★ 29 |
| 30天用量 | — | — |
| 综合分 | 85 | 41 |
| 官方 | — | — |
| 分类 | AI / LLM 工具浏览器自动化本地文件系统 | 金融数据AI / LLM 工具开发者工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 2 个月前 | 11 个月前 |
ultimate_mcp_server · 概述
一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。
TAM-MCP-Server · 概述
提供市场规模分析的综合性 MCP 服务器,包含 28 个工具、15 个商业提示和 8 个经济数据源集成。
ultimate_mcp_server · 使用场景
- 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
- 跨多个网站进行网页自动化和研究,通过浏览器控制
- 通过模型间的智能任务分配实现成本优化的 AI 工作流
TAM-MCP-Server · 使用场景
- 进行市场规模分析和 TAM/SAM 计算,为商业规划提供支持
- 访问实时金融和经济数据,用于投资分析
- 为融资演示和市场进入计划生成商业策略提示
- 执行竞争情报和行业分析
- 创建市场预测并识别增长机会
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_serverTAM-MCP-Server · 安装
安装
前置要求
- Node.js 20.x 或更高版本
- npm 或 yarn
- 数据源 API 密钥(可选)
快速设置
# 克隆仓库
git clone https://github.com/gvaibhav/TAM-MCP-Server.git
cd TAM-MCP-Server
# 安装依赖
npm install
# 配置环境
cp .env.example .env
# 编辑 .env 文件添加您的 API 密钥
# 构建并启动(HTTP - 推荐)
npm run build
npm run start:httpClaude Desktop 集成
添加到您的配置中:
{
"mcpServers": {
"tam": {
"command": "npm",
"args": ["run", "start:http"],
"cwd": "/path/to/TAM-MCP-Server"
}
}
}