get_person
Retrieve complete contact information from Copper CRM using a person ID to access detailed profiles for customer relationship management.
Instructions
Get full details of a Copper contact by their ID.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| person_id | Yes | Copper person ID |
Implementation Reference
- server.js:122-126 (handler)The handler implementation for the 'get_person' tool, which fetches a person's details from the Copper API.
async ({ person_id }) => { const person = await copperFetch(`/people/${person_id}`); return jsonResult(person); } ); - server.js:116-126 (registration)Registration of the 'get_person' tool with its schema definition and handler.
server.tool( "get_person", "Get full details of a Copper contact by their ID.", { person_id: z.number().describe("Copper person ID"), }, async ({ person_id }) => { const person = await copperFetch(`/people/${person_id}`); return jsonResult(person); } );