AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Hubspot Companies

skill-dipankar-hubspot-cli-hubspot-companies · by dipankar

Use when the user wants to search, read, create, update, or delete HubSpot CRM companies (accounts, organizations, businesses) via the `hubspot` command-line tool.

No reviews yet
0 installs
7 views
0.0% view→install

Install

$ agentstack add skill-dipankar-hubspot-cli-hubspot-companies

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-dipankar-hubspot-cli-hubspot-companies)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Hubspot Companies? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

HubSpot Companies (via hubspot CLI)

Companies represent organizations. Contacts and deals associate to them. All commands return {"success": true, "data": ...}.

Auth

Set HUBSPOT_ACCESS_TOKEN in the environment (HubSpot private-app token). Optional: --profile for multi-portal setups.

Canonical commands

| Intent | Command | | --- | --- | | List | hubspot crm companies list --limit 20 | | Get by ID | hubspot crm companies get 12345 | | Create | hubspot crm companies create --name "Acme Inc" --domain acme.com | | Create from JSON | hubspot crm companies create --properties '{"name":"Acme","industry":"SOFTWARE"}' | | Update | hubspot crm companies update 12345 --properties '{"industry":"RETAIL"}' | | Delete | hubspot crm companies delete 12345 --yes | | Search by domain | hubspot crm companies search --query "domain:acme.com" | | Filtered search | hubspot crm companies search --filter-groups '[{"filters":[{"propertyName":"numberofemployees","operator":"GT","value":"100"}]}]' | | Batch create | hubspot crm companies batch-create --inputs '[{"properties":{"name":"A"}},{"properties":{"name":"B"}}]' | | Discover properties | hubspot discover properties companies |

Associating contacts and deals

# List contacts associated to company 12345
hubspot crm associations list companies 12345 contacts

# Link company 12345 to contact 67890
hubspot crm associations create companies 12345 contacts 67890

# Remove the link
hubspot crm associations delete companies 12345 contacts 67890

Common properties

name, domain, industry, numberofemployees, annualrevenue, phone, city, state, country, hubspot_owner_id, lifecyclestage. Use hubspot discover properties companies for the full list.

Output / errors

Shape matches the contacts skill: {success, data, paging} envelope. Error codes: AUTH_ERROR (3), VALIDATION_ERROR (5), NOT_FOUND (6), RATE_LIMIT (7), SERVER_ERROR (8).

Scopes

  • Read: crm.objects.companies.read
  • Write: crm.objects.companies.write

Tips

  • The domain property is the most reliable dedupe key. Before creating, search: hubspot crm companies search --query "domain:".
  • Use list with --properties name,domain,industry to keep list payloads small.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.