# Persona — how to use (mcp.ai)

Connect your Persona account and use 69 tools for security and identity straight from your AI agent. Connect with your own API key. Persona offers identity infrastructure that allows you to craft personalized and automated verification solutions so you can better understand & protect users.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_persona?ms=1787291280000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `persona_add_tag_to_account`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/persona`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/persona/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/persona/add/tag/to/account` — Tool to add a tag to an Account in Persona. Use when you need to categorize or label an account with a specific tag. Either tag_id or tag_name must be provided in the request meta.
  - body: { meta: object, fields?: object, include?: string, account-id: string, Key-Inflection?: string, Idempotency-Key?: string }
- `POST https://api.mcp.ai/api/persona/archive/a/browser/fingerprint/list/item` — Tool to archive a browser fingerprint list item in Persona. Use when you need to mark a browser fingerprint list item as archived without permanently deleting it.
  - body: { include?: string, list_item_id: string, key_inflection?: string, idempotency_key?: string }
- `POST https://api.mcp.ai/api/persona/archive/a/country/list/item` — Tool to archive a Country List Item by ID. Use when you need to mark a country list item as archived. This action is idempotent - archiving an already archived item is safe.
  - body: { fields?: string, include?: string, list_item_id: string, key_inflection?: string, idempotency_key?: string, persona_version?: string }
- `POST https://api.mcp.ai/api/persona/archive/a/geolocation/list/item` — Tool to archive a geolocation list item from Persona. Use when you need to archive a specific geolocation list item by its ID. This operation marks the item as archived without permanently deleting it
  - body: { include?: string, list_item_id: string, key_inflection?: string, idempotency_key?: string }
- `POST https://api.mcp.ai/api/persona/archive/a/government/id/number/list/item` — Tool to archive a Government ID Number List Item. Use when you need to remove a government ID number from the active list.
  - body: { include?: string, list_item_id: string, key_inflection?: string, idempotency_key?: string }
- `POST https://api.mcp.ai/api/persona/archive/a/name/list/item` — Tool to archive a name list item in Persona. Use when you need to archive a specific name list item by its ID.
  - body: { list_item_id: string }
- `POST https://api.mcp.ai/api/persona/archive/a/webhook` — Tool to archive a Persona webhook by its ID. Use when you need to deactivate a webhook without deleting it. Archived webhooks will no longer receive events but can be referenced for historical purpose
  - body: { fields?: object, include?: string, webhook_id: string, key_inflection?: string, idempotency_key?: string, persona_version?: string }
- `POST https://api.mcp.ai/api/persona/archive/email/address/list/item` — Tool to archive an Email Address List Item in Persona. Use when you need to archive an email address or domain from a list. The archived item will be marked with an archived timestamp in the response.
  - body: { fields?: string, include?: string, list_item_id: string, key_inflection?: string, idempotency_key?: string, persona_version?: string }
- `POST https://api.mcp.ai/api/persona/archive/ip/address/list/item` — Tool to archive an IP address list item in Persona. Use when you need to remove an IP address from active monitoring.
  - body: { include?: string, list_item_id: string, key_inflection?: string, idempotency_key?: string }
- `POST https://api.mcp.ai/api/persona/archive/phone/number/list/item` — Tool to archive a phone number list item in Persona. Use when you need to mark a phone number list item as archived without permanently deleting it.
  - body: { include?: string, list_item_id: string, key_inflection?: string, idempotency_key?: string }
- `POST https://api.mcp.ai/api/persona/archive/string/list/item` — Tool to archive a String List Item in Persona. Use when you need to mark a string list item as archived without permanently deleting it. The item will be marked with an archived timestamp and its stat
  - body: { fields?: string, include?: string, list_item_id: string, key_inflection?: string, idempotency_key?: string, persona_version?: string }
- `POST https://api.mcp.ai/api/persona/clone/webhook` — Tool to clone an existing Persona webhook. Use when you need to duplicate a webhook configuration with all its settings.
  - body: { fields?: string, include?: string, webhook_id: string, key_inflection?: string, idempotency_key?: string }
- `POST https://api.mcp.ai/api/persona/consolidate/into/account` — Tool to consolidate multiple source accounts into a single destination account. Use when merging duplicate accounts or combining account data from multiple sources into one primary account.
  - body: { fields?: string, include?: string, account_id: string, key_inflection?: string, idempotency_key?: string, source_account_ids: string[] }
- `POST https://api.mcp.ai/api/persona/create/an/account` — Tool to create an account in Persona. Use when you need to create a new account with personal information such as name, email, phone, address, and custom fields.
  - body: { data: object, meta?: object, include?: string, sparse_fields?: object, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/create/an/ip/address/list/item` — Tool to create an IP Address List Item in Persona. Use when you need to add an IP address to a watchlist or allowlist for identity verification purposes. The list ID must be obtained first using a lis
  - body: { value: string, include?: string, list_id: string, key_inflection?: string, idempotency_key?: string }
- `POST https://api.mcp.ai/api/persona/create/country/list/item` — Tool to create a country list item in Persona. Use when you need to add a country to a country list for identity verification or compliance purposes.
  - body: { data: object, fields?: string, include?: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/create/document/generic` — Tool to create a generic document in Persona. Use when you need to create a document record of a specific kind/type for an account or inquiry.
  - body: { data: object, include?: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/create/email/address/list/item` — Tool to create an email address list item in Persona. Use when you need to add an email address to a watchlist or blocklist.
  - body: { value: string, include?: string, list_id: string, match_type?: string, Key-Inflection?: string, Idempotency-Key?: string }
- `POST https://api.mcp.ai/api/persona/create/government/id/number/list/item` — Tool to create a new government ID number list item in Persona. Use when you need to add a government ID number (such as SSN, passport, or driver's license) to a watchlist or monitoring list.
  - body: { data: object }
- `POST https://api.mcp.ai/api/persona/create/name/list/item` — Tool to create a new name list item in Persona. Use when you need to add a person's name to a specific list for verification or monitoring purposes.
  - body: { data: object, include?: string, Key-Inflection?: string, Idempotency-Key?: string }
- `POST https://api.mcp.ai/api/persona/create/phone/number/list/item` — Tool to create a phone number list item in Persona. Use when you need to add a phone number to a specific list for tracking or verification purposes.
  - body: { data: object, include?: string, Key-Inflection?: string, Idempotency-Key?: string }
- `POST https://api.mcp.ai/api/persona/create/string/list/item` — Tool to create a String List Item in Persona. Use when adding a new string value to an existing list for matching or filtering purposes.
  - body: { value: string, include?: string, list_id: string, key_inflection?: string, idempotency_key?: string }
- `POST https://api.mcp.ai/api/persona/create/webhook` — Tool to create a new webhook in Persona. Use when you need to set up real-time notifications for specific events in your Persona account. The webhook will send POST requests to your URL when enabled e
  - body: { url: string, name: string, fields?: string, include?: string, api_version?: string, description?: string, enabled_events: string[], key_inflection?: string, payload_filter?: object, idempotency_key?: string, persona_version?: string, api_key_inflection?: string, custom_http_headers?: object, api_attributes_blocklist?: string[], file_access_token_expires_in?: integer }
- `POST https://api.mcp.ai/api/persona/disable/webhook` — Tool to disable a webhook in Persona. Use when you need to stop a webhook from receiving events without deleting it.
  - body: { fields?: object, include?: string, webhook_id: string, key_inflection?: string, idempotency_key?: string, persona_version?: string }
- `POST https://api.mcp.ai/api/persona/enable/webhook` — Tool to enable a webhook in Persona. Use when you need to activate a previously disabled webhook.
  - body: { include?: string, webhook_id: string, key_inflection?: string, idempotency_key?: string, persona_version?: string }
- `POST https://api.mcp.ai/api/persona/expire/inquiry/sessions` — Tool to expire all inquiry sessions for specified inquiry IDs. Use when you need to expire multiple inquiry sessions at once by providing a list of inquiry IDs.
  - body: { meta: object, include?: string, sparse_fields?: object, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/import/email/address/lists` — Tool to import email addresses into a list from a CSV file. Use when you need to bulk import email addresses for identity verification or list management.
  - body: { file: object, include?: string, list_id: string }
- `POST https://api.mcp.ai/api/persona/import/ip/address/lists` — Tool to import IP address lists into Persona. Use when you need to bulk upload IPv4 or IPv6 addresses to an existing list.
  - body: { data: object, include?: string, Key-Inflection?: string, Idempotency-Key?: string }
- `POST https://api.mcp.ai/api/persona/import/name/lists` — Tool to import name lists to Persona. Use when you need to bulk import first and last names to an existing name list for identity verification purposes.
  - body: { data: object }
- `POST https://api.mcp.ai/api/persona/import/phone/number/lists` — Tool to import phone number lists into Persona. Use when you need to bulk upload phone numbers in E.164 format to an existing list.
  - body: { data: object, include?: string, Key-Inflection?: string, Idempotency-Key?: string }
- `POST https://api.mcp.ai/api/persona/list/all/accounts` — Tool to list all accounts in Persona. Use when you need to retrieve a paginated list of accounts with optional filtering by reference ID or account type.
  - body: { page.size?: integer, page.after?: string, page.before?: string, sparse_fields?: object, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string, filter.reference-id?: string, filter.account-type-id?: string }
- `POST https://api.mcp.ai/api/persona/list/all/api/logs` — Tool to list all API logs in Persona. Use when you need to retrieve a paginated history of API requests made to your organization, including request details, response status, and timing information.
  - body: { page.size?: integer, page.after?: string, page.before?: string, sparse_fields?: object, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/list/all/cases` — Tool to list all cases in Persona. Use when you need to retrieve a collection of cases with optional filtering and pagination.
  - body: { page.size?: integer, page.after?: string, fields.case?: string, page.before?: string, filter.status?: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string, filter.created-at-end?: string, filter.created-at-start?: string }
- `POST https://api.mcp.ai/api/persona/list/all/devices` — Tool to list all devices filtered by inquiry session ID. Use when you need to retrieve devices associated with a specific inquiry session.
  - body: { page_size?: integer, page_after?: string, page_before?: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string, filter.inquiry-session-id: string }
- `POST https://api.mcp.ai/api/persona/list/all/events` — Tool to list all events from Persona. Use when you need to retrieve events for your organization. Supports pagination and filtering by creation date. Events up to 3 months old can be viewed.
  - body: { page_size?: integer, page_after?: string, page_before?: string, fields_events?: string, key_inflection?: string, idempotency_key?: string, persona_version?: string, filter_created_after?: string, filter_created_before?: string }
- `POST https://api.mcp.ai/api/persona/list/all/importers` — Tool to list all importers in Persona. Use when you need to retrieve a list of all import operations, including account importers, email address list importers, and other types.
  - body: { page_size?: integer, page_after?: string, page_before?: string, sparse_fields?: object, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/list/all/inquiries` — Tool to list all inquiries in Persona. Use when you need to retrieve a paginated collection of inquiries with optional filtering by reference ID, account ID, status, or inquiry template ID.
  - body: { page.size?: integer, page.after?: string, page.before?: string, filter.status?: string, Key-Inflection?: string, fields.inquiry?: string, Idempotency-Key?: string, Persona-Version?: string, filter.account-id?: string, filter.reference-id?: string, filter.inquiry-template-id?: string }
- `POST https://api.mcp.ai/api/persona/list/all/inquiry/sessions` — Tool to list all inquiry sessions in Persona. Use when you need to retrieve a collection of inquiry sessions with optional filtering.
  - body: { filter?: object, page_size?: integer, page_after?: string, page_before?: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/list/all/lists` — Tool to list all lists in Persona. Use when you need to retrieve a paginated collection of lists with optional filtering and field selection.
  - body: { page.size?: integer, page.after?: string, page.before?: string, filter_params?: object, sparse_fields?: object, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/list/all/rate/limits` — Tool to list all rate limits in Persona. Use when you need to retrieve current rate limit information for your API usage.
  - body: { Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/list/all/reports` — Tool to list all reports in Persona. Use when you need to retrieve a collection of reports with optional filtering and pagination. Reports can include various types such as adverse media, watchlist, p
  - body: { page.size?: integer, page.after?: string, page.before?: string, fields.report?: string, filter.status?: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string, filter.report-template-id?: string }
- `POST https://api.mcp.ai/api/persona/list/all/transactions` — Tool to list all transactions in Persona. Use when you need to retrieve a paginated collection of transactions with optional filtering.
  - body: { page.size?: integer, page.after?: string, page.before?: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string, fields.transaction?: string }
- `POST https://api.mcp.ai/api/persona/list/all/webhooks` — Tool to list all webhooks in Persona. Use when you need to retrieve a paginated list of webhooks configured for the account.
  - body: { page.size?: integer, page.after?: string, page.before?: string, Key-Inflection?: string, fields.webhook?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/list/all/workflow/runs` — Tool to list all workflow runs in Persona. Use when you need to retrieve workflow runs with optional filtering by workflow ID, inquiry ID, account ID, or session token. Supports pagination for large r
  - body: { page.size?: integer, page.after?: string, page.before?: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string, filter.account-id?: string, filter.inquiry-id?: string, filter.workflow-id?: string, fields.workflow-run?: string, filter.session-token?: string }
- `POST https://api.mcp.ai/api/persona/redact/an/account` — Tool to permanently redact an account in Persona. Use when you need to delete sensitive personal information from an account to comply with privacy regulations or user requests. This operation is irre
  - body: { fields?: object, include?: string, account_id: string, key_inflection?: string, idempotency_key?: string, persona_version?: string }
- `POST https://api.mcp.ai/api/persona/remove/account/tag` — Tool to remove a tag from a Persona Account. Use when you need to remove a tag association from an account by providing either the tag ID or tag name.
  - body: { meta: object, fields?: object, include?: string, account-id: string, Key-Inflection?: string, Idempotency-Key?: string }
- `POST https://api.mcp.ai/api/persona/retrieve/a/country/list/item` — Tool to retrieve a country list item by ID in Persona. Use when you need to fetch details of a specific country list item.
  - body: { fields?: object, include?: string, list_item_id: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/retrieve/a/geolocation/list/item` — Tool to retrieve a geolocation list item from Persona. Use when you need to fetch details of a specific geolocation list item by its ID.
  - body: { fields?: object, include?: string, list_item_id: string, key_inflection?: string, idempotency_key?: string, persona_version?: string }
- `POST https://api.mcp.ai/api/persona/retrieve/a/name/list/item` — Tool to retrieve a Name List Item in Persona. Use when you need to get details about a specific name list item, including first name, last name, status, match count, and timestamps.
  - body: { fields?: string, include?: string, list_item_id: string, key_inflection?: string, idempotency_key?: string, persona_version?: string }
- `POST https://api.mcp.ai/api/persona/retrieve/a/string/list/item` — Tool to retrieve a string list item by ID in Persona. Use when you need to fetch details of a specific string list item.
  - body: { fields?: object, include?: string, list_item_id: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/retrieve/a/webhook` — Tool to retrieve a webhook by its ID. Use when you need to fetch details about a specific webhook configuration.
  - body: { fields?: object, include?: string, webhook-id: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/retrieve/an/account` — Tool to retrieve an account in Persona. Use when you need to fetch details of a specific account by its ID.
  - body: { include?: string, account-id: string, sparse_fields?: object, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/retrieve/an/event` — Tool to retrieve an event in Persona. Use when you need to fetch details of a specific event that was logged by Persona.
  - body: { fields?: object, include?: string, event-id: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/retrieve/an/importer` — Tool to retrieve a specific importer in Persona. Use when you need to get details about a specific import operation by its ID.
  - body: { include?: string, importer_id: string, sparse_fields?: object, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/retrieve/an/ip/address/list/item` — Tool to retrieve an IP Address List Item in Persona. Use when you need to get details about a specific IP address list item, including its value, status, match count, and timestamps.
  - body: { fields?: string, include?: string, list_item_id: string, key_inflection?: string, idempotency_key?: string, persona_version?: string }
- `POST https://api.mcp.ai/api/persona/retrieve/api/log` — Tool to retrieve an API log in Persona. Use when you need to fetch details of a specific API request/response that was logged by Persona.
  - body: { fields?: object, include?: string, api-log-id: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/retrieve/browser/fingerprint/list/item` — Tool to retrieve a browser fingerprint list item in Persona. Use when you need to fetch details of a specific browser fingerprint from a list for identity verification or fraud prevention purposes.
  - body: { fields?: object, include?: string, list-item-id: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/retrieve/document` — Tool to retrieve a document from Persona. Use when you need to fetch details of a specific document by its ID.
  - body: { include?: string, document-id: string, sparse_fields?: object, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/retrieve/document/generic` — Tool to retrieve a generic document in Persona. Use when you need to fetch details of a specific document by its ID.
  - body: { fields?: object, include?: string, document-id: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/retrieve/email/address/list/item` — Tool to retrieve an Email Address List Item in Persona. Use when you need to get details about a specific email address list item, including its value, status, match count, and timestamps.
  - body: { fields?: string, include?: string, list_item_id: string, key_inflection?: string, idempotency_key?: string, persona_version?: string }
- `POST https://api.mcp.ai/api/persona/retrieve/government/id/number/list/item` — Tool to retrieve a Government ID Number List Item in Persona. Use when you need to get details about a specific government ID number list item, including its ID number, ID class, status, match count, 
  - body: { fields?: string, include?: string, list_item_id: string, key_inflection?: string, idempotency_key?: string, persona_version?: string }
- `POST https://api.mcp.ai/api/persona/retrieve/phone/number/list/item` — Tool to retrieve a phone number list item in Persona. Use when you need to fetch details of a specific phone number from a list for identity verification or fraud prevention purposes.
  - body: { fields?: object, include?: string, list-item-id: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/rotate/webhook/secret` — Tool to rotate a webhook's secret in Persona. Use when you need to generate a new secret key for webhook signature verification while optionally keeping the old secret active for a grace period.
  - body: { fields?: object, include?: string, webhook_id: string, key_inflection?: string, idempotency_key?: string, persona_version?: string, expires_in_seconds?: integer }
- `POST https://api.mcp.ai/api/persona/search/accounts` — Tool to search accounts in Persona using flexible query criteria. Use when you need to find accounts based on specific attributes, tags, or status. Supports boolean logic (AND/OR/NOT) and comparison o
  - body: { page?: object, sort?: object, query?: object, sparse_fields?: object, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/search/cases` — Tool to search cases in Persona using advanced query filters with boolean logic. Use when you need to find cases matching specific criteria using operators like eq, gt, gte, lt, lte combined with AND/
  - body: { page?: object, sort?: object, query?: object, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/set/tags` — Tool to set tags on a Persona Account. Use when you need to assign or update tags for an account using either tag IDs or tag names. This operation replaces all existing tags with the provided ones.
  - body: { meta: object, fields?: object, include?: string, account-id: string, Key-Inflection?: string, Idempotency-Key?: string }
- `POST https://api.mcp.ai/api/persona/update/a/webhook` — Tool to update a webhook in Persona. Use when you need to modify webhook configuration such as name, description, URL, or enabled events.
  - body: { url?: string, name?: string, fields?: object, include?: string, webhook_id: string, api_version?: string, description?: string, enabled_events?: string[], key_inflection?: string, payload_filter?: object, idempotency_key?: string, persona_version?: string, api_key_inflection?: string, custom_http_headers?: object, api_attributes_blocklist?: string[], file_access_token_expires_in?: integer }
- `POST https://api.mcp.ai/api/persona/update/an/account` — Tool to update an account in Persona. Use when you need to modify account information such as name, email, phone, address, reference ID, or custom fields.
  - body: { data: object, include?: string, account-id: string, sparse_fields?: object, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }
- `POST https://api.mcp.ai/api/persona/update/document/generic` — Tool to update a generic document in Persona. Use when you need to modify fields, files, or kind of an existing document by its ID.
  - body: { data: object, fields?: object, include?: string, document-id: string, Key-Inflection?: string, Idempotency-Key?: string, Persona-Version?: string }

## Example prompts
- "What can I do in Persona?"
- "Show me a summary of my Persona account"

## More
- Page: https://mcp.ai/persona
- Agent spec (llms.txt): https://mcp.ai/persona/llms.txt
- Postman collection: https://mcp.ai/persona/postman.json
