close_search_leads

Pack: close-crm · Endpoint: https://gateway.pipeworx.io/close-crm/mcp

Search or list leads (companies/accounts in Close) using Close’s query language.

Parameters

NameTypeRequiredDescription
_apiKeystringyesClose API key
querystringnoClose query string. Examples: name:"Acme Inc", status_label:"Potential", email_address:@acme.com, lead_created_within:30d. Free text also works. Omit to list all leads.
_limitnumbernoResults per page (default 100, max 200)
_skipnumbernoNumber of results to skip for pagination (default 0)

Example call

Arguments

{
  "_apiKey": "your-close-crm-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/close-crm/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"close_search_leads","arguments":{"_apiKey":"your-close-crm-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('close_search_leads', {
  "_apiKey": "your-close-crm-api-key"
});

More examples

{
  "_apiKey": "your-close-crm-api-key",
  "query": "name:\"Acme Inc\"",
  "_limit": 50
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "close-crm": {
      "url": "https://gateway.pipeworx.io/close-crm/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 30, 2026