close_get_lead
Pack: close-crm · Endpoint: https://gateway.pipeworx.io/close-crm/mcp
Get a single lead by its Close lead ID (format lead_...). Returns full detail: display name, description, status, contacts, addresses, opportunities, custom fields, and timestamps.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Close API key |
lead_id | string | yes | Close lead ID, e.g. lead_abc123 |
Example call
Arguments
{
"_apiKey": "your-close-crm-api-key",
"lead_id": "lead_abc123def456"
}
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_get_lead","arguments":{"_apiKey":"your-close-crm-api-key","lead_id":"lead_abc123def456"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('close_get_lead', {
"_apiKey": "your-close-crm-api-key",
"lead_id": "lead_abc123def456"
});
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.