Setup Guide
Connect 28 Amazon seller tools to your favorite AI platform in under a minute.
Prerequisites
Before you start, you need:
- An AI Platform — one of: OpenClaw, Claude Code, Cursor, or Windsurf.
- 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.
curl -fsSL http://localhost:3003/install.sh | bash -s -- YOUR_API_KEYReplace 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
curl -H "Authorization: Bearer YOUR_API_KEY" \
http://localhost:3003/api/v1/plugin/download \
-o titan-agentic-ai-connect-openclaw.tgzopenclaw plugins install ./titan-agentic-ai-connect-openclaw.tgzopenclaw config set plugins.entries.titan-connect.config.TITAN_API_KEY "YOUR_API_KEY"
openclaw gateway restart
openclaw plugins listYou 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.
curl -fsSL http://localhost:3003/api/install-claude | bash -s -- YOUR_API_KEYOr add the MCP server manually:
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:
{
"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:
{
"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:
"Show me my PPC performance for the last 30 days"
"Which campaigns have the highest ACoS?"
"Search Titan lessons about product launch strategy"
"What are my top performing search terms?"
"Get the PLOG framework for my product category"
"List all my Amazon stores and set one as active"
"Show me product performance with sales and ranking data"
"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.