Skip to main content

1. Generate an API key

  1. Sign in to Naridon
  2. Go to Settings → API Keys
  3. Click Generate API Key
  4. Pick the scopes you need (start with read-only if unsure)
  5. Copy the key — it starts with nrd_. You only see it once.

2. Add Naridon to your AI tool’s MCP config

Edit ~/.claude.json:
{
  "mcpServers": {
    "naridon": {
      "command": "npx",
      "args": ["-y", "@naridon/mcp-server"],
      "env": {
        "NARIDON_API_KEY": "nrd_your_api_key_here"
      }
    }
  }
}

3. Restart your AI tool

The MCP server is started fresh each time the tool launches. After saving your config, fully quit and reopen the tool.

4. Verify

Ask the tool:
“Call the whoami tool.”
You should get back your shop name, plan, and the scopes the key has.

Environment variables

VariableRequiredDefaultDescription
NARIDON_API_KEYYesPer-shop API key. Starts with nrd_.
NARIDON_API_URLNohttps://app.naridon.com/api/v1API base URL. Override for staging.
NARIDON_SHOP_IDNo(resolved from key)Override the shop the key resolves to. Only for multi-shop keys.
For staging, set:
"env": {
  "NARIDON_API_KEY": "nrd_...",
  "NARIDON_API_URL": "https://api-staging.naridon.com/api/v1"
}