> For the complete documentation index, see [llms.txt](https://docs.noelclaw.fun/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.noelclaw.fun/install-by-client/hermes-openclaw.md).

# Hermes

Add Noelclaw as an MCP skill in Hermes. Once connected, all 121 tools are available directly in your agent conversations.

No build step needed - runs via `npx`.

**Requirement:** Node.js >= 18. Check with `node --version`. Download from [nodejs.org](https://nodejs.org) if needed.

***

## Method 1 - CLI (Fastest)

```bash
hermes mcp add noelclaw -- npx -y -p @noelclaw/mcp@3.43.1 noelclaw-mcp
```

Reload without restarting Hermes:

```
/reload-mcp
```

***

## Method 2 - Config File

Edit `~/.hermes/config.yaml`:

```yaml
mcp_servers:
  noelclaw:
    command: npx
    args:
      - -y
      - -p
      - "@noelclaw/mcp@3.43.1"
      - noelclaw-mcp
    timeout: 30
    connect_timeout: 15
```

Then run `/reload-mcp` in any Hermes session.

***

## Verify Tools Are Loaded

```
/list-tools
```

You should see all 121 tools listed - including `get_market_data`, `memory_search`, `base_mcp_swap`, `rh_mcp_estimate`, `miroshark_simulate`, and more.

***

## Try It Out

Just talk naturally - Hermes picks the right tool automatically.

**Live market data:**

> "What's the crypto market looking like right now?"

**Save something to memory:**

> "Remember that I prefer low-risk DeFi on Base - Lido and Aerodrome only"

**Test memory recall in a new session:**

> "What do you know about my trading preferences?"

**Ask Noel for analysis:**

> "What's your take on ETH liquid staking yields this week?"

**Swap on Base:**

> "Swap 0.01 ETH to USDC on Base"

**Scan for opportunities:**

> "Are there any tokens showing dip reversals right now?"

**Run a simulation:**

> "How would markets react if a major stablecoin depegged?"

***

## Semantic Memory

Noelclaw remembers things you tell it - across different sessions.

**Session 1:**

> "Remember: I only trade on Base, I prefer Lido for staking, I avoid leverage"

**New session later:**

> "Should I bridge to Ethereum mainnet for some yields?"

Hermes will answer based on your saved preferences - "probably not, your profile says Base-only" - without you repeating anything.

→ [Full memory guide](/memory-and-knowledge/memory.md)

***

## Troubleshooting

| Problem                               | Fix                                                                            |
| ------------------------------------- | ------------------------------------------------------------------------------ |
| Tools not showing after `/reload-mcp` | Check Node.js 18+ is installed: `node --version`                               |
| `connect_timeout` errors              | Increase to `connect_timeout: 20` - first run downloads the package            |
| `npx: command not found`              | Set full path: `command: /usr/local/bin/npx` - find it with `which npx`        |
| Auth error on tool calls              | Wallet auto-generates on first use - no sign-in needed. Try restarting Hermes. |
| Slow first response                   | Normal - first run downloads `@noelclaw/mcp` (\~5 seconds). Fast after.        |


---

# 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.noelclaw.fun/install-by-client/hermes-openclaw.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.
