Skip to main content
Glama

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
NameRequiredDescriptionDefault
person_idYesCopper person ID

Implementation Reference

  • 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);
      }
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/dazanza/copper-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server