> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentity.to/llms.txt
> Use this file to discover all available pages before exploring further.

# Quick Start

> Connect Agentity to your AI agent in under 5 minutes.

<Steps>
  <Step title="Register your account">
    Create an account at [https://agentity.to/register](https://agentity.to/register). An active subscription is required for creating agent identities. Start a new subscription from the [billing page](https://agentity.to/dashboard/billing). 
  </Step>

  <Step title="Add provider API keys">
    Set the API key for each identity provider you want to use.

    See [Manage Providers](https://qualletinc.mintlify.app/guides/manage-providers) for where to get each provider's API key.
  </Step>

  <Step title="Create an API key">
    Generate a new API Key in [https://agentity.to/dashboard/api-keys](https://agentity.to/dashboard/api-keys). You will need this when configuring the MCP server.

    <Warning>
      Copy the `key` value from the response immediately — it is only returned once.
    </Warning>
  </Step>

  <Step title="Connect the MCP server">
    Add Agentity to your MCP client configuration:

    ```json theme={null}
    {
      "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`.
  </Step>

  <Step title="Provision your first identity">
    Prompt your agent with a unique `agentId` and have it call `initialize_vault` first, then `create_agent_identity`.

    <Note>
      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`.
    </Note>

    <Tip>
      Always initialize the vault before creating an identity so your agent can immediately store sensitive credentials like card numbers after provisioning.
    </Tip>
  </Step>
</Steps>

## Next steps

<CardGroup cols={2}>
  <Card title="MCP Setup" icon="plug" href="/guides/mcp-setup">
    Full guide for connecting the MCP server to your agent framework.
  </Card>

  <Card title="Create an Identity" icon="id-card" href="/guides/create-identity">
    Step-by-step walkthrough of provisioning email, phone, and virtual card.
  </Card>
</CardGroup>
