TAM-MCP-Server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
TAM-MCP-Server by gvaibhav | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 29 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 11 mo ago | this month |
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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
TAM-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"
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything