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

# Quick Install

> Two commands to install both pieces on Claude Code

If you are on Claude Code, both pieces install in two commands.

## 1. Install the OpenFinance skills

<Tip>
  Skills are recommended but optional. They teach the agent how to use the tools well.
</Tip>

```bash theme={null}
npx skills add openfinance-tech/skills -y
```

## 2. Add the MCP server

No key is needed for public market data:

```bash theme={null}
claude mcp add openfinance-tech \
  --transport http "https://api.openfinance.tech/agent/mcp"
```

## Want wallet-scoped tools too?

Add your API key as a header:

```bash theme={null}
claude mcp add openfinance-tech \
  --transport http "https://api.openfinance.tech/agent/mcp" \
  --header "x-api-key: open_xxxxx"
```

Restart Claude Code and you are done.

## Next steps

<CardGroup cols={2}>
  <Card title="Skills vs MCP" icon="circle-info" href="/getting-started/skills-vs-mcp">
    Learn the difference between the two pieces.
  </Card>

  <Card title="API Keys" icon="key" href="/getting-started/api-keys">
    Understand when you need an API key.
  </Card>
</CardGroup>
