Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
openclaudia avatar

Hubspot

  • 339 installs
  • 614 repo stars
  • Updated August 5, 2026
  • openclaudia/openclaudia-skills

hubspot is a Claude Code skill that manages HubSpot CRM contacts, companies, deals, associations, and CMS pages via the HubSpot API for developers who need sales pipeline automation inside coding agents.

About

hubspot is a Claude Code integration skill that teaches agents to call the HubSpot CRM v3 and CMS APIs at api.hubapi.com using a Private App bearer token. The skill documents curl workflows for listing and searching contacts, creating companies, updating deal stages, managing owner associations, and publishing site or landing pages. It covers pagination with after cursors, property filters with operators like EQ and CONTAINS_TOKEN, and common reports such as pipeline summaries and deal health checks. Developers reach for hubspot when building lead-capture flows, syncing CRM records from apps, or automating sales handoffs without writing integration docs from scratch. The skill requires HUBSPOT_ACCESS_TOKEN with scopes for contacts, companies, deals, and content, and notes a rate limit of 100 requests per 10 seconds for private apps.

  • CRM contact and deal sync
  • marketing form capture
  • lifecycle email triggers
  • webhook event handling
  • sales pipeline automation

Hubspot by the numbers

  • 339 all-time installs (skills.sh)
  • +13 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #225 of 853 Sales & Marketing skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/openclaudia/openclaudia-skills --skill hubspot

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs339
repo stars614
Last updatedAugust 5, 2026
Repositoryopenclaudia/openclaudia-skills

How do you automate HubSpot CRM from Claude Code?

Connect HubSpot CRM, contacts, deals, forms, and marketing automation into apps or agents for lead capture, pipeline updates, lifecycle emails, and sales handoff workflows.

Who is it for?

Developers integrating HubSpot CRM or CMS into Node.js apps, agents, or internal tools that already use a HubSpot Private App access token.

Skip if: Developers who only need marketing email design, lack a HubSpot Private App token, or want a non-HubSpot CRM integration.

When should I use this skill?

The user asks to add a HubSpot contact, create or update a deal, search CRM records, or manage HubSpot CMS pages.

What you get

HubSpot CRM records, deal pipeline updates, association links, CMS page listings, and pipeline summary tables.

  • CRM contact and deal records
  • pipeline summary tables
  • HubSpot CMS page listings

By the numbers

  • Documents HubSpot private-app rate limit of 100 requests per 10 seconds
  • Requires 4 Private App scopes: contacts, companies, deals, and content
  • Default CRM list limit is 10 records with a maximum of 100 per page

Files

SKILL.mdMarkdownGitHub ↗

HubSpot CRM & CMS Skill

You are a HubSpot CRM and CMS automation expert. Use the HubSpot API to manage contacts, companies, deals, owners, associations, properties, CMS pages, and files.

Prerequisites

This skill requires HUBSPOT_ACCESS_TOKEN (Private App token). Check for it in environment variables or ~/.claude/.env.global. If not found, inform the user:

This skill requires a HubSpot Private App access token. Set it via:
  export HUBSPOT_ACCESS_TOKEN=your_token_here
Or add it to ~/.claude/.env.global

Create a Private App at: Settings > Integrations > Private Apps
Required scopes: crm.objects.contacts, crm.objects.companies, crm.objects.deals, content

API Reference

Base URL: https://api.hubapi.com Auth header: Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN} Rate limit: 100 requests per 10 seconds for private apps.

Contacts

List contacts:

curl -s "https://api.hubapi.com/crm/v3/objects/contacts?limit=10&properties=firstname,lastname,email,company,phone" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}"

Search contacts:

curl -s -X POST "https://api.hubapi.com/crm/v3/objects/contacts/search" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{
    "filterGroups": [{
      "filters": [{
        "propertyName": "email",
        "operator": "CONTAINS_TOKEN",
        "value": "example.com"
      }]
    }],
    "properties": ["firstname", "lastname", "email", "company"],
    "limit": 10
  }'

Create contact:

curl -s -X POST "https://api.hubapi.com/crm/v3/objects/contacts" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{
    "properties": {
      "firstname": "John",
      "lastname": "Doe",
      "email": "john@example.com",
      "company": "Acme Inc",
      "phone": "+1234567890"
    }
  }'

Get contact by email:

curl -s -X POST "https://api.hubapi.com/crm/v3/objects/contacts/search" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{
    "filterGroups": [{
      "filters": [{
        "propertyName": "email",
        "operator": "EQ",
        "value": "john@example.com"
      }]
    }],
    "properties": ["firstname", "lastname", "email", "company", "phone", "lifecyclestage"]
  }'

Companies

List companies:

curl -s "https://api.hubapi.com/crm/v3/objects/companies?limit=10&properties=name,domain,industry,numberofemployees" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}"

Search companies by domain:

curl -s -X POST "https://api.hubapi.com/crm/v3/objects/companies/search" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{
    "filterGroups": [{
      "filters": [{
        "propertyName": "domain",
        "operator": "EQ",
        "value": "example.com"
      }]
    }],
    "properties": ["name", "domain", "industry", "numberofemployees", "annualrevenue"]
  }'

Deals

Create deal:

curl -s -X POST "https://api.hubapi.com/crm/v3/objects/deals" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{
    "properties": {
      "dealname": "New Enterprise Deal",
      "dealstage": "appointmentscheduled",
      "pipeline": "default",
      "amount": "50000",
      "closedate": "2026-06-30"
    }
  }'

List deals:

curl -s "https://api.hubapi.com/crm/v3/objects/deals?limit=10&properties=dealname,dealstage,amount,closedate,pipeline" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}"

Update deal stage:

curl -s -X PATCH "https://api.hubapi.com/crm/v3/objects/deals/{dealId}" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{"properties": {"dealstage": "closedwon"}}'

Owners

List owners (sales reps):

curl -s "https://api.hubapi.com/crm/v3/owners/" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}"

Associations

Associate contacts with companies or deals:

# Associate deal with contact (type 3)
curl -s -X PUT "https://api.hubapi.com/crm/v3/objects/deals/{dealId}/associations/contacts/{contactId}/3" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}"

# Associate deal with company (type 5)
curl -s -X PUT "https://api.hubapi.com/crm/v3/objects/deals/{dealId}/associations/companies/{companyId}/5" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}"

# Associate contact with company (type 1)
curl -s -X PUT "https://api.hubapi.com/crm/v3/objects/contacts/{contactId}/associations/companies/{companyId}/1" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}"

Get associated contacts for a deal:

curl -s "https://api.hubapi.com/crm/v3/objects/deals/{dealId}/associations/contacts" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}"

Properties

List all contact properties:

curl -s "https://api.hubapi.com/crm/v3/properties/contacts" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}"

CMS Pages

List site pages:

curl -s "https://api.hubapi.com/cms/v3/pages/site-pages?limit=10" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}"

List landing pages:

curl -s "https://api.hubapi.com/cms/v3/pages/landing-pages?limit=10" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}"

Search Operators

OperatorDescription
EQEqual to
NEQNot equal to
LT / LTELess than / Less than or equal
GT / GTEGreater than / Greater than or equal
CONTAINS_TOKENContains word
NOT_CONTAINS_TOKENDoes not contain word
HAS_PROPERTYProperty exists
NOT_HAS_PROPERTYProperty does not exist

Pagination

All list endpoints support pagination via the after parameter:

curl -s "https://api.hubapi.com/crm/v3/objects/contacts?limit=100&after={next_cursor}" \
  -H "Authorization: Bearer ${HUBSPOT_ACCESS_TOKEN}"

The after value comes from paging.next.after in the response.

Common Workflows

Pipeline Report

1. List all deals with dealstage, amount, closedate 2. Group by stage 3. Sum amounts per stage 4. Present as pipeline summary table

Contact Enrichment

1. Search contacts missing key properties (NOT_HAS_PROPERTY) 2. For each, check if company domain exists 3. Pull company data and update contact

Deal Health Check

1. List deals in active stages 2. Flag deals with no activity in 14+ days 3. Flag deals past expected close date 4. Present prioritized action list

Important Notes

  • Always use pagination for large datasets. Default limit is 10, max is 100.
  • HubSpot property names are lowercase with no spaces (e.g., firstname, dealstage, closedate).
  • Deal stages vary by pipeline. List pipeline stages via the Pipelines API if needed.
  • Rate limit: 100 requests per 10 seconds. Batch operations when possible.

Related skills

How it compares

Pick hubspot when the integration target is HubSpot CRM or CMS specifically and you want curl-ready CRM v3 workflows inside a coding agent.

FAQ

What credentials does the hubspot skill need?

The hubspot skill requires HUBSPOT_ACCESS_TOKEN from a HubSpot Private App. Set it in environment variables or ~/.claude/.env.global with scopes for crm.objects.contacts, crm.objects.companies, crm.objects.deals, and content.

What HubSpot API rate limit applies?

The hubspot skill documents HubSpot private-app rate limits of 100 requests per 10 seconds against api.hubapi.com. Batch operations and pagination with after cursors help stay within that ceiling on large CRM datasets.

Which HubSpot objects can hubspot manage?

The hubspot skill covers HubSpot CRM v3 objects—contacts, companies, deals, owners, associations, and custom properties—plus CMS v3 site pages and landing pages through authenticated REST calls.

Sales & Marketinglifecyclecontentdistribution

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.