# Add to Claude

No build step needed. The Noelclaw MCP server runs via `npx @noelclaw/research`.

***

## Claude Code

```bash
claude mcp add noelclaw -- npx @noelclaw/research
```

Verify it's registered:

```bash
claude mcp list
# noelclaw   npx @noelclaw/research
```

Use tools in any conversation:

```
get_market_data
get_latest_signal token: BTC
start_research userId: "your-id"
```

***

## Claude Desktop

### Mac

Edit: `~/Library/Application Support/Claude/claude_desktop_config.json`

```json
{
  "mcpServers": {
    "noelclaw": {
      "command": "npx",
      "args": ["@noelclaw/research"]
    }
  }
}
```

### Windows

Edit: `%APPDATA%\Claude\claude_desktop_config.json`

```json
{
  "mcpServers": {
    "noelclaw": {
      "command": "npx",
      "args": ["@noelclaw/research"]
    }
  }
}
```

After saving, **restart Claude Desktop**. Tools appear in the tool picker automatically.

***

## Optional: Point to a Custom Backend

If you're running your own Convex deployment:

```json
{
  "mcpServers": {
    "noelclaw": {
      "command": "npx",
      "args": ["@noelclaw/research"],
      "env": {
        "NOELCLAW_CONVEX_URL": "https://your-deployment.convex.site"
      }
    }
  }
}
```

***

## Troubleshooting

| Problem                             | Fix                                                                           |
| ----------------------------------- | ----------------------------------------------------------------------------- |
| Tools not showing in Claude Desktop | Restart Claude Desktop after saving config                                    |
| `npx: command not found`            | Install Node.js 18+ from nodejs.org                                           |
| `spawn npx ENOENT`                  | Use full path to npx: find it with `where npx` (Windows) or `which npx` (Mac) |


---

# Agent Instructions: 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:

```
GET https://docs.noelclaw.fun/mcp-skill-reference/claude-install.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
