For the complete documentation index, see llms.txt. This page is also available as Markdown.

Setup & Configuration

The @noelclaw/mcp package runs via npx - no build step, no cloning, no local files needed. One command gives you all 121 tools in any MCP-compatible AI client.

Requirement: Node.js >= 18. Check with node --version. Download from nodejs.org if needed.


Claude Code

claude mcp add noelclaw -s user -- npx -y -p @noelclaw/mcp@3.43.1 noelclaw-mcp

Verify the server is registered:

claude mcp list
# noelclaw   npx -y -p @noelclaw/mcp@3.43.1 noelclaw-mcp

Then in any Claude Code session:

get_market_data

Claude Desktop

Mac - Edit ~/Library/Application Support/Claude/claude_desktop_config.json

Windows - Edit %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "noelclaw": {
      "command": "npx",
      "args": ["-y", "-p", "@noelclaw/mcp@3.43.1", "noelclaw-mcp"]
    }
  }
}

Save the file, then restart Claude Desktop. all 121 tools appear automatically in the tool list.


Cursor

Via Settings UI

  1. Open Cursor → Settings (Ctrl+, / Cmd+,)

  2. Search MCP or go to Features → MCP

  3. Add server:

    • Name: noelclaw

    • Command: npx

    • Args: -y -p @noelclaw/mcp@3.43.1 noelclaw-mcp

Via Config File

Edit ~/.cursor/mcp.json:

Restart Cursor. Tools appear in Composer when in Agent mode.


Windsurf

Edit ~/.windsurf/mcp_config.json:

Restart Windsurf after saving.


Hermes

CLI Method

Reload without restarting:

Config File Method

Edit ~/.hermes/config.yaml:

Then run /reload-mcp in any Hermes session.


Aeon

See Aeon integration guide for the full setup.

Quick install via Aeon skill registry:

Or add manually to your Aeon config - see the Aeon page.


Any MCP Client

If your client accepts a generic MCP server definition:


First Steps After Install

1. Confirm tools are loaded

Ask your AI client:

You should see 121 tools.

2. Pull live market data

3. Check your portfolio

4. Ask Noel

5. Save something to vault


Optional: Environment Variables

Pass env vars to unlock extra tools or use your own API keys:

See Environment Variables for the full list.


Troubleshooting

Problem
Fix

Tools not showing

Restart your MCP client after saving the config

npx: command not found

Install Node.js 18+ from nodejs.org

Server starts but no response

Normal - the MCP server waits for stdin (MCP protocol), it does not serve HTTP

Slow first start

npx downloads the package on first run. Subsequent starts are instant

connect_timeout errors

Increase to connect_timeout: 20 in your config - first run takes longer

Coder tools fail

Requires BANKR_API_KEY env var

Last updated

Was this helpful?