> For the complete documentation index, see [llms.txt](https://docs.finchagentic.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.finchagentic.com/app/overview.md).

# Finch App overview

Browser product for Finch: chat terminal, trading, wallet, API Market, skills.

## Stack

| Layer      | Tech                                          |
| ---------- | --------------------------------------------- |
| Frontend   | React 19, Vite, Tailwind, Zustand             |
| Backend    | Convex (queries/mutations/actions/HTTP/crons) |
| Auth       | Wallet SIWE → session token                   |
| Chains     | Base `8453`, Robinhood Chain `4663`           |
| Settlement | USDG on Robinhood Chain                       |

## Surfaces (routes)

| Route                   | Surface                                          |
| ----------------------- | ------------------------------------------------ |
| `/terminal`             | AI Terminal (chat + tool calling)                |
| `/trading`              | Trading                                          |
| `/wallet`               | Wallet                                           |
| `/apimarket/*`          | API Market (catalog, buy, sell, analytics, docs) |
| `/skills`               | Skills marketplace                               |
| `/profile`, `/settings` | Account                                          |

## Auth model

1. **Identity wallet** — login via SIWE
2. **Execution wallet** — custodial encrypted key for Base + RH txs + market payout
3. **API keys** — buyer keys for OpenAI-compatible market (`*_sk_*` style; UI may brand as Finch)

## Relation to MCP

|              | App                                 | MCP                         |
| ------------ | ----------------------------------- | --------------------------- |
| Memory/vault | Prompt injection + product features | Full tool palette           |
| Trading UI   | Visual confirm flows                | `base_mcp_*` / `rh_mcp_*`   |
| API Market   | Buy/Sell dashboards                 | Not the primary MCP surface |
| Tool count   | Focused Terminal tools              | 121 registered tools        |

## Operator notes

* Never put Alchemy keys in `VITE_*`
* Dual deploy often needed: Convex + frontend host
* See monorepo `architecture.md` for internal module map


---

# 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://docs.finchagentic.com/app/overview.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.
