CuratedMCP
OpenAI Agents SDK
Free

How to Install HubSpot MCP in OpenAI Agents SDK

Official HubSpot integration — automate CRM, marketing, and service workflows from AI

What HubSpot MCP does

The official HubSpot MCP server gives AI agents access to CRM and marketing workflows. It can manage contacts, deals, tickets, and campaign analytics. Features: - Create and update contacts, companies, and deals - Manage tickets and customer support workflows - Query marketing email performance and campaign metrics - Update lists and properties - Access sales pipeline and revenue reports - Generate follow-up tasks and email drafts HubSpot MCP is built for revenue teams that want AI to help manage customers through marketing, sales, and service.

hubspot
crm
marketing
sales
service

Installation steps

  1. 1Install: pip install openai-agents
  2. 2Copy the snippet below into your agent code
  3. 3Replace placeholder env values with your real keys
  4. 4Pass mcp_servers=[mcp_server] to your Agent()

Python snippet

Python snippetpython
from agents import Agent
from agents.mcp import MCPServerStdio

mcp_server = MCPServerStdio(
    command="npx",
    args=["-y", "@hubspot/mcp"],
    env={
        "HUBSPOT_API_KEY": "...",
        "HUBSPOT_PORTAL_ID": "...",
    },
)

agent = Agent(
    name="My Agent",
    model="gpt-4o",
    mcp_servers=[mcp_server],
)
Full server details Open Config Editor

Install in other clients

For maintainers

If you maintain HubSpot MCP, add this badge to your README to show it's verified on CuratedMCP:

CuratedMCP Verified
[![CuratedMCP Verified](https://curatedmcp.com/api/badge/hubspot-mcp)](https://curatedmcp.com/marketplace/hubspot-mcp)

Related servers