Skip to main content

CRM Connector Pack

TrustedSandbox optionalv1.0.0MITPartially Verified42Connector

by AgentNode · published 5 months ago · toolpack

Manage contacts, deals, and pipelines in HubSpot and Salesforce.

Universal CRM integration for managing contacts, companies, deals, and sales pipelines. Supports HubSpot and Salesforce with unified data models.

langchaincrewaigeneric

Quick Start

bash
agentnode install crm-connector-pack

Runs in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.

Usage

From package
python
from crm_connector_pack.tool import run

# Create a contact
contact = run(
    capability="crm_manage",
    params={
        "platform": "hubspot",
        "action": "create_contact",
        "data": {
            "email": "sarah.chen@techcorp.io",
            "first_name": "Sarah",
            "last_name": "Chen",
            "company": "TechCorp",
            "job_title": "VP of Engineering",
            "phone": "+1-555-0198"
        }
    }
)

print(f"Contact created: {contact['contact_id']}")

# Associate with a deal
deal = run(
    capability="crm_manage",
    params={
        "platform": "hubspot",
        "action": "create_deal",
        "data": {
            "name": "TechCorp Enterprise License",
            "stage": "qualification",
            "amount": 48000,
            "close_date": "2026-06-30",
            "contact_ids": [contact["contact_id"]]
        }
    }
)

print(f"Deal created: {deal['deal_id']} — ${deal['amount']:,}")

Environment Variables

HUBSPOT_API_KEY

HubSpot private app access token. Required when using the hubspot platform.

SALESFORCE_CLIENT_ID

Salesforce connected app client ID. Required when using the salesforce platform.

SALESFORCE_CLIENT_SECRET

Salesforce connected app client secret. Required when using the salesforce platform.

Runs locally on your machine. No execution data is sent to AgentNode. Permissions are checked before execution. Learn how this works

Verification

low confidence42/100○ Partially Verified
smokeCredential boundary reached (medium confidence)
+12/25
testsTests failed
0/15
importAll tools imported successfully
+15/15
installInstalled in 1.4s
+15/15
contractContract not validated
0/10
determinismNo determinism data
0/5
reliabilityNo stability data
0/10

Package installs and imports correctly. requires API credentials for full verification.

install1.4s
import54ms
smoke106ms
tests1.1s

This package requires API credentials for full verification. Install and import checks passed.

Verified in real_auto mode

Python 3.12.3ffmpegpopplertesseractuv

Last verified 4d ago· Runner v2.0.0

Use this when you need to...

  • Create and update contacts in HubSpot
  • Sync deal pipeline stages from Salesforce
  • Search for contacts by email or company name
  • Log activities and notes against a deal record
  • Pull lead scoring data for sales prioritization

README

Version History

Capabilities

crm_integrationcrm_managetool

Input Schema

{
  "type": "object",
  "required": [
    "operation",
    "provider"
  ],
  "properties": {
    "api_key": {
      "type": "string",
      "default": ""
    },
    "provider": {
      "enum": [
        "hubspot"
      ],
      "type": "string",
      "default": "hubspot"
    },
    "operation": {
      "enum": [
        "list_contacts",
        "get_contact",
        "create_contact",
        "search_contacts"
      ],
      "type": "string"
    }
  }
}

Connector

hubspotconnectorapi_key

Permissions

Sandbox optionalFrom a trusted publisher — runs on the host by default. You can require isolation with sandbox.host_trust_policy.

Declared by the publisher. Checked before execution by the policy gate.

Networkunrestricted
Filesystemnone
Code Executionnone
Data Accessconnected_accounts
User Approvalonce

Permissions are policy-checked before execution. For trusted and curated packages that run on the host, network and filesystem access are policy-checked but not OS-sandboxed. When runtime isolation is required for untrusted/community code, AgentNode uses sandbox-or-fail-closed if the required container runtime and pinned image are available. Learn more

Privacy

All tool execution happens locally on your machine. AgentNode never receives:

  • • Tool inputs or outputs
  • • Execution logs
  • • Data your agent processes

Only install events and search queries are sent to the registry.

bash
agentnode install crm-connector-pack

Environment Variables

HUBSPOT_API_KEY
SALESFORCE_CLIENT_ID
SALESFORCE_CLIENT_SECRET

Files (3)

License

MIT

Stats

Downloads0
Installs0
Versionv1.0.0
Published3/16/2026
Channelstable
Typetoolpack
Entrypointcrm_connector_pack.tool

Compatibility

Frameworks

langchaincrewaigeneric

Runtime

python

Python Version

>=3.10

Trust & Security

PublisherTrusted
SignatureNone
ProvenanceNone
Security Issues0

Publisher

A

AgentNode

@agentnode