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

# Mercury

Read-only access to Mercury bank accounts, balances, and transaction history.

## What It Enables

| Tool                | Capability | Description                                                                          |
| ------------------- | ---------- | ------------------------------------------------------------------------------------ |
| `list_accounts`     | `read`     | List all Mercury accounts with current and available balances                        |
| `get_account`       | `read`     | Get one account by ID with full metadata                                             |
| `list_transactions` | `read`     | List transactions on an account, filterable by date range, status, or counterparty   |
| `get_transaction`   | `read`     | Get a single transaction in full, including routing, attachments, and failure reason |
| `list_recipients`   | `read`     | List saved payment recipients                                                        |

This connector is permanently read-only. Mercury's API supports sending money and creating recipients — none of that is exposed here and should never be added.

## Setup

**Required:** Mercury read-only API token.

**Where to find it:** Mercury dashboard → **Settings → API Tokens**. Generate a token with read-only scope.

1. In the Notara dashboard, go to **Tools**.
2. Click the **Mercury** tile.
3. In Mercury, go to **Settings → API Tokens** and create a new read-only token.
4. Paste the token into the credential field and click **Verify & Save**.

Your API token is encrypted at rest with AES-256-GCM.

## Example Prompts

> "What's our current balance across all Mercury accounts?"

> "Show me all transactions over $5,000 from last month."

> "Who is the counterparty on transaction ID abc123?"


---

# 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://notara.gitbook.io/notara-docs/connectors/mercury.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.
