Setup Guide

Connect 28 Amazon seller tools to your favorite AI platform in under a minute.

Prerequisites

Before you start, you need:

  1. An AI Platform — one of: OpenClaw, Claude Code, Cursor, or Windsurf.
  2. An API Key — You'll receive an API key once your waitlist application is approved. It looks like tk_live_abc123...

OpenClaw Setup

Install with a single command. All you need is your TitanConnect API key.

Terminal — One command install
curl -fsSL http://localhost:3003/install.sh | bash -s -- YOUR_API_KEY

Replace YOUR_API_KEY with your TitanConnect key (tk_live_...).

The script checks prerequisites, downloads the plugin, installs it into OpenClaw, configures your API key, and restarts the gateway. After it finishes, open openclaw tui and start chatting.

Manual installation steps
Step 1 — Download the plugin
curl -H "Authorization: Bearer YOUR_API_KEY" \
  http://localhost:3003/api/v1/plugin/download \
  -o titan-agentic-ai-connect-openclaw.tgz
Step 2 — Install into OpenClaw
openclaw plugins install ./titan-agentic-ai-connect-openclaw.tgz
Step 3 — Configure and restart
openclaw config set plugins.entries.titan-connect.config.TITAN_API_KEY "YOUR_API_KEY"
openclaw gateway restart
openclaw plugins list

You should see TitanConnect with status loaded. The plugin registers all 28 tools automatically and includes a comprehensive teaching document so your AI knows how to use every tool effectively.

Claude Code Setup

Install with a single command. The script downloads the plugin, configures the MCP server, and sets your API key.

Terminal — One command install
curl -fsSL http://localhost:3003/api/install-claude | bash -s -- YOUR_API_KEY

Or add the MCP server manually:

Terminal — Manual setup
claude mcp add titan-connect \
  --transport http \
  --url http://localhost:3003/api/mcp \
  --header "Authorization: Bearer YOUR_API_KEY"

After setup, start a Claude Code session and ask about your Amazon seller data.

Cursor Setup

Add the following to your .cursor/mcp.json file in your project root:

.cursor/mcp.json
{
  "mcpServers": {
    "titan-connect": {
      "type": "http",
      "url": "http://localhost:3003/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Replace YOUR_API_KEY with your TitanConnect key. Restart Cursor to load the MCP server.

Windsurf Setup

Add TitanConnect as an MCP server in your Windsurf configuration:

MCP server configuration
{
  "mcpServers": {
    "titan-connect": {
      "type": "http",
      "url": "http://localhost:3003/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Replace YOUR_API_KEY with your TitanConnect key. Restart Windsurf to activate the tools.

What You Can Do

Once installed, open openclaw tui and try these prompts:

Analytics

"Show me my PPC performance for the last 30 days"

PPC

"Which campaigns have the highest ACoS?"

Knowledge

"Search Titan lessons about product launch strategy"

Analytics

"What are my top performing search terms?"

Knowledge

"Get the PLOG framework for my product category"

Setup

"List all my Amazon stores and set one as active"

Products

"Show me product performance with sales and ranking data"

Knowledge

"What are the community insights on PPC bidding?"

Troubleshooting

Plugin not showing in plugins list

Run openclaw plugins list to check if the plugin is installed. If not, re-run the install command. Make sure OpenClaw is up to date.

Connection refused or timeout

Make sure your API key is correct and hasn't been revoked. Contact your Titan admin to verify your key status.

"Unauthorized" error

Your API key may be invalid or expired. Double-check the key by running: openclaw config get plugins.entries.titan-connect.config.TITAN_API_KEY

Data tools returning "no seller selected"

Before using data tools, you need to set an active seller. Ask your AI to "list my seller accounts" and then "set [store name] as active".

Rate limited

TitanConnect applies rate limits per API key. If you hit the limit, wait a moment before trying again. Rate limits reset on a rolling window.

Need Help?

Reach out to your Titan Network admin or the community for support.

Visit Titan Network