ultimate_mcp_server vs TAM-MCP-Server
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | TAM-MCP-Server by gvaibhav | |
|---|---|---|
| Stars | ★ 149 | ★ 29 |
| 30d uses | — | — |
| Score | 85 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | FinanceAI / LLM ToolsDeveloper Tools |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | 11 mo ago |
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.
TAM-MCP-Server · Summary
A comprehensive MCP server for market sizing analysis with 28 tools, 15 business prompts, and integration with 8 economic data sources.
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
TAM-MCP-Server · Use cases
- Conduct market sizing analysis and TAM/SAM calculations for business planning
- Access real-time financial and economic data for investment analysis
- Generate business strategy prompts for funding pitches and market entry plans
- Perform competitive intelligence and industry analysis
- Create market forecasts and identify growth opportunities
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_serverTAM-MCP-Server · Install
Installation
Prerequisites
- Node.js 20.x or later
- npm or yarn
- API keys for data sources (optional)
Quick Setup
# Clone repository
git clone https://github.com/gvaibhav/TAM-MCP-Server.git
cd TAM-MCP-Server
# Install dependencies
npm install
# Configure environment
cp .env.example .env
# Edit .env with your API keys
# Build and start (HTTP - recommended)
npm run build
npm run start:httpClaude Desktop Integration
Add to your configuration:
{
"mcpServers": {
"tam": {
"command": "npm",
"args": ["run", "start:http"],
"cwd": "/path/to/TAM-MCP-Server"
}
}
}