Cover image
Try Now
2025-04-13

MCP服务器实现将Claude和其他AI模型无缝连接到HubSpot CRM数据。提供通过标准化界面来管理联系,公司和参与活动的工具。用最少的配置简化了接触创建,重复检测和管道管理。

3 years

Works with Finder

3

Github Watches

20

Github Forks

45

Github Stars

HubSpot MCP Server

Docker Hub License: MIT

Overview

A Model Context Protocol (MCP) server implementation that provides integration with HubSpot CRM. This server enables AI models to interact with HubSpot data and operations through a standardized interface.

For more information about the Model Context Protocol and how it works, see Anthropic's MCP documentation.

HubSpot Server MCP server

Components

Resources

No resources are implemented. At the end of the day, tools are all we need.

Example Prompts

  • Create Hubspot contacts by copying from LinkedIn profile webpage:

    Create HubSpot contacts and companies from following:
    
    John Doe
    Software Engineer at Tech Corp
    San Francisco Bay Area • 500+ connections
    
    Experience
    Tech Corp
    Software Engineer
    Jan 2020 - Present · 4 yrs
    San Francisco, California
    
    Previous Company Inc.
    Senior Developer
    2018 - 2020 · 2 yrs
    
    Education
    University of California, Berkeley
    Computer Science, BS
    2014 - 2018
    
  • Get latest activities for your company:

    What's happening latestly with my pipeline?
    

Tools

The server offers several tools for managing HubSpot objects:

Contact Management Tools

  • hubspot_create_contact
    • Create a new contact in HubSpot (checks for duplicates before creation)
    • Input:
      • firstname (string): Contact's first name
      • lastname (string): Contact's last name
      • email (string, optional): Contact's email address
      • properties (dict, optional): Additional contact properties
        • Example: {"phone": "123456789", "company": "HubSpot"}
    • Behavior:
      • Checks for existing contacts with the same first name and last name
      • If company is provided in properties, also checks for matches with the same company
      • Returns existing contact details if a match is found
      • Creates new contact only if no match is found

Company Management Tools

  • hubspot_create_company

    • Create a new company in HubSpot (checks for duplicates before creation)
    • Input:
      • name (string): Company name
      • properties (dict, optional): Additional company properties
        • Example: {"domain": "example.com", "industry": "Technology"}
    • Behavior:
      • Checks for existing companies with the same name
      • Returns existing company details if a match is found
      • Creates new company only if no match is found
  • hubspot_get_company_activity

    • Get activity history for a specific company
    • Input:
      • company_id (string): HubSpot company ID
    • Returns: Array of activity objects

Engagement Tools

  • hubspot_get_recent_engagements

    • Get recent engagement activities across all contacts and companies
    • Input:
      • days (integer, optional): Number of days to look back (default: 7)
      • limit (integer, optional): Maximum number of engagements to return (default: 50)
    • Returns: Array of engagement objects with full metadata
  • hubspot_get_recent_companies

    • Get most recently active companies from HubSpot
    • Input:
      • limit (integer, optional): Maximum number of companies to return (default: 10)
    • Returns: Array of company objects with full metadata
  • hubspot_get_recent_contacts

    • Get most recently active contacts from HubSpot
    • Input:
      • limit (integer, optional): Maximum number of contacts to return (default: 10)
    • Returns: Array of contact objects with full metadata

Setup

Installing via Smithery

To install buryhuang/mcp-hubspot for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install buryhuang/mcp-hubspot --client claude

Prerequisites

You'll need a HubSpot access token. You can obtain this by:

  1. Creating a private app in your HubSpot account: Follow the HubSpot Private Apps Guide
    • Go to your HubSpot account settings
    • Navigate to Integrations > Private Apps
    • Click "Create private app"
    • Fill in the basic information:
      • Name your app
      • Add description
      • Upload logo (optional)
    • Define required scopes:
      • tickets
      • crm.objects.contacts.write
      • crm.objects.contacts.sensitive.read
      • crm.objects.companies.sensitive.read
      • sales-email-read
      • crm.objects.deals.sensitive.read
      • crm.objects.companies.write
      • crm.objects.companies.read
      • crm.objects.deals.read
      • crm.objects.deals.write
      • crm.objects.contacts.read
    • Review and create the app
    • Copy the generated access token

Note: Keep your access token secure and never commit it to version control.

Docker Installation

You can either build the image locally or pull it from Docker Hub. The image is built for the Linux platform.

Supported Platforms

  • Linux/amd64
  • Linux/arm64
  • Linux/arm/v7

Option 1: Pull from Docker Hub

docker pull buryhuang/mcp-hubspot:latest

Option 2: Build Locally

docker build -t mcp-hubspot .

Run the container:

docker run \
  -e HUBSPOT_ACCESS_TOKEN=your_access_token_here \
  buryhuang/mcp-hubspot:latest

You can also pass the access token directly as a command-line argument:

docker run \
  buryhuang/mcp-hubspot:latest \
  --access-token your_access_token_here

Cross-Platform Publishing

To publish the Docker image for multiple platforms, you can use the docker buildx command. Follow these steps:

  1. Create a new builder instance (if you haven't already):

    docker buildx create --use
    
  2. Build and push the image for multiple platforms:

    docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t buryhuang/mcp-hubspot:latest --push .
    
  3. Verify the image is available for the specified platforms:

    docker buildx imagetools inspect buryhuang/mcp-hubspot:latest
    

Usage with Claude Desktop

Installing via Smithery

To install mcp-hubspot for Claude Desktop automatically via Smithery:

npx -y @smithery/cli@latest install mcp-hubspot --client claude

Docker Usage

{
  "mcpServers": {
    "hubspot": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "HUBSPOT_ACCESS_TOKEN=your_access_token_here",
        "buryhuang/mcp-hubspot:latest"
      ]
    }
  }
}

You can also use the command-line argument:

{
  "mcpServers": {
    "hubspot": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "buryhuang/mcp-hubspot:latest",
        "--access-token",
        "your_access_token_here"
      ]
    }
  }
}

Development

To set up the development environment:

pip install -e .

License

This project is licensed under the MIT License.

相关推荐

  • Joshua Armstrong
  • Confidential guide on numerology and astrology, based of GG33 Public information

  • https://suefel.com
  • Latest advice and best practices for custom GPT development.

  • Alexandru Strujac
  • Efficient thumbnail creator for YouTube videos

  • Emmet Halm
  • Converts Figma frames into front-end code for various mobile frameworks.

  • Elijah Ng Shi Yi
  • Advanced software engineer GPT that excels through nailing the basics.

  • lumpenspace
  • Take an adjectivised noun, and create images making it progressively more adjective!

  • https://maiplestudio.com
  • Find Exhibitors, Speakers and more

  • Yusuf Emre Yeşilyurt
  • I find academic articles and books for research and literature reviews.

  • Carlos Ferrin
  • Encuentra películas y series en plataformas de streaming.

  • https://zenepic.net
  • Embark on a thrilling diplomatic quest across a galaxy on the brink of war. Navigate complex politics and alien cultures to forge peace and avert catastrophe in this immersive interstellar adventure.

  • apappascs
  • 发现市场上最全面,最新的MCP服务器集合。该存储库充当集中式枢纽,提供了广泛的开源和专有MCP服务器目录,并提供功能,文档链接和贡献者。

  • ShrimpingIt
  • MCP系列GPIO Expander的基于Micropython I2C的操作,源自ADAFRUIT_MCP230XX

  • ravitemer
  • 一个功能强大的Neovim插件,用于管理MCP(模型上下文协议)服务器

  • jae-jae
  • MCP服务器使用剧作《无头浏览器》获取网页内容。

  • pontusab
  • 光标与风浪冲浪社区,查找规则和MCP

  • patruff
  • Ollama和MCP服务器之间的桥梁,使本地LLMS可以使用模型上下文协议工具

  • av
  • 毫不费力地使用一个命令运行LLM后端,API,前端和服务。

  • appcypher
  • 很棒的MCP服务器 - 模型上下文协议服务器的策划列表

  • chongdashu
  • 使用模型上下文协议(MCP),启用Cursor,Windsurf和Claude Desktop等AI助手客户,以通过自然语言控制虚幻引擎。

  • Mintplex-Labs
  • 带有内置抹布,AI代理,无代理构建器,MCP兼容性等的多合一桌面和Docker AI应用程序。

    Reviews

    3 (1)
    Avatar
    user_pWaVxgbJ
    2025-04-17

    As a longtime MCP application user, I am thoroughly impressed with mcp-hubspot by peakmojo. This integration seamlessly bridges the gap between MCP and HubSpot, enhancing workflow efficiency. The straightforward setup via the provided GitHub link and excellent welcome information make this tool indispensable for any HubSpot user. Highly recommend!