hubspot-install-auth
Install and configure HubSpot SDK/CLI authentication. Use when setting up a new HubSpot integration, configuring API keys, or initializing HubSpot in your project. Trigger with phrases like "install hubspot", "setup hubspot", "hubspot auth", "configure hubspot API key".
claude-code
Allowed Tools
ReadWriteEditBash(npm:*)Bash(pip:*)Grep
Provided by Plugin
hubspot-pack
Claude Code skill pack for HubSpot (30 skills)
Installation
This skill is included in the hubspot-pack plugin:
/plugin install hubspot-pack@claude-code-plugins-plus
Click to copy
Instructions
HubSpot Install & Auth
Overview
Set up HubSpot SDK/CLI and configure authentication credentials.
Prerequisites
- Node.js 18+ or Python 3.10+
- Package manager (npm, pnpm, or pip)
- HubSpot account with API access
- API key from HubSpot dashboard
Instructions
Step 1: Install SDK
# Node.js
npm install @hubspot/sdk
# Python
pip install hubspot
Step 2: Configure Authentication
# Set environment variable
export HUBSPOT_API_KEY="your-api-key"
# Or create .env file
echo 'HUBSPOT_API_KEY=your-api-key' >> .env
Step 3: Verify Connection
// Test connection code here
Output
- Installed SDK package in node_modules or site-packages
- Environment variable or .env file with API key
- Successful connection verification output
Error Handling
| Error | Cause | Solution |
|---|---|---|
| Invalid API Key | Incorrect or expired key | Verify key in HubSpot dashboard |
| Rate Limited | Exceeded quota | Check quota at https://docs.hubspot.com |
| Network Error | Firewall blocking | Ensure outbound HTTPS allowed |
| Module Not Found | Installation failed | Run npm install or pip install again |
Examples
TypeScript Setup
import { HubSpotClient } from '@hubspot/sdk';
const client = new HubSpotClient({
apiKey: process.env.HUBSPOT_API_KEY,
});
Python Setup
from hubspot import HubSpotClient
client = HubSpotClient(
api_key=os.environ.get('HUBSPOT_API_KEY')
)
Resources
Next Steps
After successful auth, proceed to hubspot-hello-world for your first API call.