> For the complete documentation index, see [llms.txt](https://archer-bot.gitbook.io/archer.bot/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://archer-bot.gitbook.io/archer.bot/for-builders/quickstart.md).

# Quickstart

Get your AI coding assistant connected to Archer Protocol in under 5 minutes. This guide uses Claude Code as the example, but Archer's MCP server works with any MCP-compatible client.

## Step 1: Create an Account

Sign up at [app.archerprotocol.com](https://app.archerprotocol.com). Archer creates embedded wallets (EVM + Solana) for you automatically on signup.

## Step 2: Create an API Key

1. Go to [Developer Portal](https://app.archerprotocol.com/developer)
2. Click **Create API Key**
3. Give it a name (e.g., "My Claude Code key")
4. Select scopes: `read`, `quote`, `swap`, `bridge`, `send`
5. Copy the key — it's shown only once

## Step 3: Connect Claude Code

Add Archer to your project's `.mcp.json` (or `~/.claude.json` for global access):

```json
{
  "mcpServers": {
    "archer": {
      "command": "npx",
      "args": ["@archerprotocol/mcp-client@latest"],
      "env": {
        "ARCHER_API_KEY": "arch_your_key_here"
      }
    }
  }
}
```

That's it. The `@archerprotocol/mcp-client` package bridges your local AI assistant to Archer's remote MCP server. No manual proxy setup required.

## Step 4: Start Using It

Open Claude Code and try these prompts:

```
> What's the price of ETH?
> Show my balances across all chains
> Quote swapping 100 USDC to ETH on Arbitrum
> Swap 50 USDC to ETH on Base
```

For transaction operations (swap, bridge, send), open [app.archerprotocol.com](https://app.archerprotocol.com/developer) to review and approve the transaction in the Pending Approvals section.

## Using Other Clients?

Archer's MCP server works with all major AI coding tools. See the [Client Setup Guide](/archer.bot/for-builders/overview/client-setup.md) for configuration instructions for:

* Claude Desktop
* Cursor
* VS Code / GitHub Copilot
* Windsurf
* Cline
* Continue
* Goose
* GitHub Copilot CLI

## Next Steps

* [MCP Server Overview](/archer.bot/for-builders/overview.md) — how the MCP server works
* [Tools Reference](/archer.bot/for-builders/overview/tools-reference.md) — all available tools and their parameters
* [Developer Portal](/archer.bot/for-builders/developer-portal.md) — API key management, approvals, and usage tracking


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://archer-bot.gitbook.io/archer.bot/for-builders/quickstart.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
