Skip to main content

Close CRM

In one line: Connect Close so your UnleashX agent can create and update leads and contacts, move opportunities through the pipeline, log notes and tasks, and start a workflow the moment a new lead lands.

1. Overview

Close is a sales CRM built around the lead, which is the company record. Each lead holds contacts (people), opportunities (deals with a value and a status), tasks, and activities — notes, calls and emails. Once connected to UnleashX, your agent can search and manage leads and contacts, create and move opportunities, create and complete tasks, log notes and emails, read calls, and look up the organisation’s users, pipelines, statuses and custom field definitions. It can also read Close’s change feed directly. Four polling triggers let a workflow start on its own — a new lead, contact, opportunity or task. Connecting Close to UnleashX means the CRM stops depending on someone remembering to update it: a call ends and the note is logged, a form comes in and the lead exists with the right status, a deal closes and the next task is already assigned.

2. What you’ll need

  • A Close account with access to Settings → Developer.
  • An API key from that page.
  • An UnleashX agent where you’ll add the connector.
An API key inherits the permissions of the user it belongs to. Create it on an account that can see the leads your workflows need.

3. Get your credentials

Close authenticates with an API key. There’s no OAuth flow.
1

Sign in to Close

Go to app.close.com and sign in.
2

Open the API Keys page

Go to Settings → Developer → API Keys.
3

Create a key

Create a new API key and name it something you’ll recognise later — for example “UnleashX”.
4

Copy it

Copy the key now and store it in your password manager. If you lose it, delete the key and create a new one.

Access this key grants UnleashX

The key can delete leads, and deleting a lead takes its contacts and activities with it. Grant it deliberately and keep delete steps out of workflows that run unattended.

4. Connect on UnleashX

1

Open your agent

Sign in at https://www.tryunleashx.com and open the agent you want to connect.
2

Open Data Connectors

In the agent, go to Data Connectors and find Close CRM.
3

Fill in the Configuration form

Click Connect / Add / Configure and complete both fields:Then click Add Tool.The Close CRM Configuration dialog: Access Token and Account Name
4

Confirm

Save, then run Get Me once — it returns the user and organisation the key belongs to, which is the quickest way to confirm you connected the right account.

Use Close CRM in a Workflow

Once connected, you can add Close CRM to any automation from the Workflows builder. Its triggers and tools appear in the Apps panel, marked with an MCP badge.
1

Open the Apps panel

Open Workflows → New Workflow. On the canvas, click the + below a node, then open the Apps tab in the Paths panel and select Close CRM — its Actions are listed underneath. Use the search box if you have many connectors.Close CRM actions in the Apps panel
2

Pick the action and account

Choose the action from Select Action, then pick the connected account under Select Account — or click Add Account to connect one now.
3

Fill in the fields

Required fields are marked with a red asterisk (*). Most steps need a Lead Id — get it from List Leads or from the trigger that started the workflow.
4

Save and test

Click Save. Use Test to verify the step, then toggle Publish when the workflow is ready.
The steps are the same for every connector. For the full workflow builder guide, see Using MCP in Workflows.

5. Available tools

Updates are partial. Supply only the fields you want changed and the rest are left alone — you never have to send a whole record back to edit one field.
Names match the Workflows Apps panel, which lists them alphabetically; they’re grouped here by what they act on. The Tool ID is what the agent calls behind the scenes. Leads Contacts Opportunities Tasks Activities Organisation and configuration
Anything taking a status_id needs a real id, not a status name. Fetch them once with List Lead Statuses or List Opportunity Statuses and reuse them in the workflow.
Triggers
Close’s lead and contact endpoints support no ordering and no date filter, so polling them newest-first is impossible. On New Lead and On New Contact read the change feed instead, which does filter properly. Opportunities and tasks have native ordering and use it directly. Either way you get the new records — the mechanism just differs.

6. Example usage

“Create a lead for Acme Corp with Jane as the contact.” Runs Create Lead, then Create Contact against the returned lead id. “Move the Acme deal to Negotiation and set it to ₹4,00,000.” Runs List Opportunity Statuses for the id, then Update Opportunity. “Log a note on that lead and remind me to follow up Friday.” Runs Create Note and Create Task with a due date. “When a new lead comes in, enrich it and assign a first-touch task.” A workflow starts on On New Lead, enriches via your data connector, then runs Update Lead and Create Task.

7. Permissions & data access

UnleashX CAN:
  • Search, read, create, update and delete leads, contacts and opportunities.
  • Create and complete tasks, log notes and email activities, and read calls.
  • Read users, pipelines, statuses, custom field definitions and the change feed.
  • Start workflows on new leads, contacts, opportunities and tasks.
UnleashX CANNOT:
  • Do anything the key’s own user can’t do in Close.
  • Place calls or actually send email — Create Email records an activity, it isn’t a send.
  • Reach any Close organisation other than the key’s.
To disconnect: In UnleashX, open your agent → Data Connectors → Close CRM → Disconnect. To fully revoke access, delete the key in Settings → Developer → API Keys.

8. Troubleshooting

For general connector issues, see /mcp/integrations.

9. Frequently asked questions

Is my CRM data stored by UnleashX? No. Tools call the Close API live with your key. UnleashX keeps only the bookkeeping a polling trigger needs to know what it has already seen. What’s a lead versus a contact? In Close, the lead is the company and contacts are the people on it. Every contact belongs to a lead. Does Create Email send an email? No. It records an email activity on the lead. Use an email connector to actually send. How do I find custom field ids? List Custom Fields returns the lead custom field definitions and their ids. Can I connect more than one Close organisation? Yes. Add a key per organisation and tell them apart by Account Name.

10. References