klaviyo_get_profile

Pack: klaviyo · Endpoint: https://gateway.pipeworx.io/klaviyo/mcp

Get a contact’s full profile by ID. Returns email, name, phone, custom properties, list memberships, and subscription status.

Parameters

NameTypeRequiredDescription
_apiKeystringyesKlaviyo private API key
profile_idstringyesKlaviyo profile ID

Example call

Arguments

{
  "_apiKey": "your-klaviyo-api-key",
  "profile_id": "01ARZ3NDEKTSV4RRFFQ69G5FAV"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('klaviyo_get_profile', {
  "_apiKey": "your-klaviyo-api-key",
  "profile_id": "01ARZ3NDEKTSV4RRFFQ69G5FAV"
});

Response shape

FieldTypeDescription
dataobjectProfile object
Full JSON Schema
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "description": "Profile object",
      "properties": {
        "type": {
          "type": "string",
          "description": "Resource type (profile)"
        },
        "id": {
          "type": "string",
          "description": "Profile ID"
        },
        "attributes": {
          "type": "object",
          "description": "Profile attributes",
          "properties": {
            "email": {
              "type": "string",
              "description": "Contact email address"
            },
            "first_name": {
              "type": "string",
              "description": "Contact first name"
            },
            "last_name": {
              "type": "string",
              "description": "Contact last name"
            },
            "phone_number": {
              "type": "string",
              "description": "Contact phone number"
            },
            "properties": {
              "type": "object",
              "description": "Custom properties"
            },
            "list_memberships": {
              "type": "array",
              "description": "List memberships",
              "items": {
                "type": "object"
              }
            },
            "subscriptions": {
              "type": "array",
              "description": "Subscription status",
              "items": {
                "type": "object"
              }
            }
          }
        }
      }
    }
  }
}

Connect

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

{
  "mcpServers": {
    "klaviyo": {
      "url": "https://gateway.pipeworx.io/klaviyo/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026