n8n community node for PulseAgent — an AI-powered digital workforce platform.
| Node | Description |
|---|---|
| PulseAgent Agent | List agents, get details, chat with agents |
| PulseAgent CRM | List, create, and update CRM contacts |
| PulseAgent Trial | Start and check trial sessions |
- Open your n8n instance
- Go to Settings > Community Nodes
- Enter
n8n-nodes-pulseagent - Click Install
cd ~/.n8n/nodes
npm install n8n-nodes-pulseagentThen restart n8n.
- In n8n, create a new PulseAgent API credential
- Enter your PulseAgent email and password, or provide a JWT token directly
- The default API base URL is
https://pulseagent.io/app/api
- List Agents —
GET /agents - Get Agent —
GET /agents/{id} - Chat With Agent —
POST /agents/{id}/chat(message + optional conversation_id)
- List Contacts —
GET /crm/contacts - Create Contact —
POST /crm/contacts(name, email, phone, company, additional fields) - Update Contact —
PUT /crm/contacts/{id}
- Start Trial —
POST /fly/trial/start - Get Trial Status —
GET /fly/trial/status
npm install
npm run buildTo test locally, link this package into your n8n custom extensions directory:
# Build
npm run build
# Link into n8n
cd ~/.n8n/nodes
npm link /path/to/n8n-nodes-pulseagentMIT