Skip to main content
1

Register your account

Create an account at https://agentity.to/register. An active subscription is required for creating agent identities. Start a new subscription from the billing page
2

Add provider API keys

Set the API key for each identity provider you want to use.See Manage Providers for where to get each provider’s API key.
3

Create an API key

Generate a new API Key in https://agentity.to/dashboard/api-keys. You will need this when configuring the MCP server.
Copy the key value from the response immediately — it is only returned once.
4

Connect the MCP server

Add Agentity to your MCP client configuration:
{
  "mcpServers": {
    "agentity-mcp": {
      "type": "http",
      "url": "https://api.agentity.to/mcp?apiKey=YOUR_API_KEY"
    }
  }
}
Your agent now has access to initialize_vault, create_agent_identity, get_agent_identity, save_secret_to_vault, and get_secret_from_vault.
5

Provision your first identity

Prompt your agent with a unique agentId and have it call initialize_vault first, then create_agent_identity.
Some providers (like Privacy.com) only return card details once. Have your agent save them to the vault right away using save_secret_to_vault.
Always initialize the vault before creating an identity so your agent can immediately store sensitive credentials like card numbers after provisioning.

Next steps

MCP Setup

Full guide for connecting the MCP server to your agent framework.

Create an Identity

Step-by-step walkthrough of provisioning email, phone, and virtual card.