> 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/getting-started.md).

# Getting started

## 60 seconds

```bash
# 1. Install / configure your MCP client
npx -y -p @finchagentic/mcp@4.0.0 finch install

# 2. Health check
npx -y -p @finchagentic/mcp@4.0.0 finch doctor

# 3. (Optional) fully local vault + memory
npx -y -p @finchagentic/mcp@4.0.0 finch setup
```

Then open Claude Code / Cursor / Hermes and say:

```
remember: I prefer conservative DeFi, max size caps on swaps
```

Expected: a `memory_add` (or vault profile) write that **auto-loads next session**.

***

## First workflows worth trying

### 1. Memory that survives the session

```
remember my coding style — TypeScript strict, no any, prefer composition
what do you know about my coding style?
```

### 2. Vault research note

```
deep research on Base AI infra protocols, save to vault
what did I save about Base AI infra?
```

### 3. Persistent agent

```
spawn an agent called base-tracker
goal: track Base DeFi weekly and save findings
```

### 4. Quote before swap (Base)

```
estimate swap 50 USDC to ETH on Base
```

Never executes until you explicitly confirm.

***

## Two ways to use Finch

| Mode           | When                                              | Needs                                    |
| -------------- | ------------------------------------------------- | ---------------------------------------- |
| **MCP client** | You already live in Claude Code / Cursor / Hermes | Install package · optional session token |
| **Finch App**  | Browser Terminal, Trading, Wallet, API Market     | Login (wallet SIWE) · session            |

MCP and App share the same product idea: **state that persists**. Tool surfaces are not 1:1 — Terminal has a focused analytics/swap subset; MCP has the full 121-tool runtime.

***

## Next

* [Install](/install.md) for every client config
* [Local mode](/local-mode.md) if you want zero account
* [Memory](/memory.md) + [Vault](/vault.md) for the core product story
* [Security](/security.md) before any mainnet or schedule


---

# 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/getting-started.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.
