mcp-hubspot vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-hubspot by baryhuang | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 122 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | E-commerceAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 6 mo ago | this month |
mcp-hubspot · Summary
MCP server for HubSpot CRM integration with vector storage and caching to overcome API limitations.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-hubspot · Use cases
- AI-powered CRM data analysis and reporting
- Creating contacts and companies from external sources like LinkedIn
- Semantic search across CRM data for better customer insights
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
mcp-hubspot · Install
Installation
**Via Smithery (recommended)**
npx -y @smithery/cli@latest install mcp-hubspot --client claude**Using Docker**
docker run -e HUBSPOT_ACCESS_TOKEN=your_token buryhuang/mcp-hubspot:latest**Claude Desktop Configuration**
{
"mcpServers": {
"hubspot": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "HUBSPOT_ACCESS_TOKEN=your_token",
"-v", "/path/to/storage:/storage",
"buryhuang/mcp-hubspot:latest"
]
}
}
}**Prerequisites**
- HubSpot access token with these scopes:
- crm.objects.contacts (read/write) - crm.objects.companies (read/write) - sales-email-read
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