mcp-hubspot vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-hubspot by baryhuang | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 122 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | E-commerceAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.