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

# Create an ATXP account

> Create an ATXP account to use the ATXP SDK

## Create an ATXP account

In order to use the ATXP SDK, you need to create an ATXP account.

<Steps>
  <Step title="Create an ATXP account">
    Visit [ATXP Accounts](https://accounts.atxp.ai/) and sign in with your Google account. Your account will receive \$5.00 in credits as a welcome bonus.
  </Step>

  <Step title="Save your connection details">
    <img src="https://mintcdn.com/atxp/fHV_kLnUnKWC5mKp/images/get_wallet_addr_step_2.png?fit=max&auto=format&n=fHV_kLnUnKWC5mKp&q=85&s=3626b209d4d1e721af6053311bd67ef3" alt="Step 2 of getting your ATXP connection string" width="1608" height="498" data-path="images/get_wallet_addr_step_2.png" />

    Copy your connection string and save it in an environment variable. The best way to do this is to create a `.env` file in the root of your project and add the following line:

    ```bash .env lines theme={null}
    ATXP_CONNECTION=https://accounts.atxp.ai?connection_token=<random_string>
    ```

    <Warning>
      Never commit your `.env` file to version control. It is a good idea to add your `.env` to your `.gitignore` file to prevent it from being committed.

      ```bash theme={null}
      echo .env >> .gitignore
      ```
    </Warning>
  </Step>

  <Step title="Use your connection string in the ATXP SDK">
    You now have your connection string. This connection string is tied to your Google authenticated ATXP account. You can use this connection string to connect to the ATXP SDK.

    ```typescript theme={null}
    // Import the ATXP SDK
    import { atxpClient, ATXPAccount } from '@atxp/client';

    // Read the ATXP account details from environment variables
    const atxpConnectionString = process.env.ATXP_CONNECTION;

    // Create a client using the `atxpClient` function
    const client = await atxpClient({
    mcpServer: 'https://search.mcp.atxp.ai/',
    account: new ATXPAccount(atxpConnectionString),
    });

    ```
  </Step>
</Steps>

## Resources

<CardGroup cols={2}>
  <Card title="Build an agent using paid MCP servers" icon="robot" href="/developers/build-agents/tutorial">
    Follow a complete tutorial to build your first ATXP‑powered agent that pays for MCP server tool calls.
  </Card>

  <Card title="Monetize your MCP server" icon="messages-dollar" href="/developers/monetize/tutorial">
    Follow a complete tutorial to build your first paid MCP server with ATXP integration, from initial setup to live deployment.
  </Card>
</CardGroup>
