Quick Start
Quick Start: agentcentral + OpenClaw
Connect your Amazon seller data to OpenClaw in under 5 minutes.
Prerequisites
- An agentcentral account with a connected Amazon account (all Amazon marketplaces supported)
- An API key from the dashboard (starts with
ac_live_) - OpenClaw installed
Let OpenClaw set it up for you
Copy this prompt into OpenClaw. It will set up the server and, if needed, tell you how to set AGENT_CENTRAL_API_KEY locally.
1. Set your local key and add the MCP server
Export your agentcentral API key in the shell OpenClaw uses:
export AGENT_CENTRAL_API_KEY="ac_live_..."
Then register the MCP server. Single quotes around the JSON keep OpenClaw from expanding the variable into your raw key.
openclaw mcp set agentcentral '{"transport":"streamable-http","url":"https://mcp.agentcentral.to/mcp","headers":{"Authorization":"Bearer ${AGENT_CENTRAL_API_KEY}"}}'Why use AGENT_CENTRAL_API_KEY
OpenClaw resolves AGENT_CENTRAL_API_KEY from your local environment when it connects. Your raw ac_live_... key stays out of chat history and out of shared config.
The variable must be set before OpenClaw connects. If you add it to a shell profile while OpenClaw is running, restart OpenClaw before verifying.
2. Verify the connection
Confirm the server is registered:
openclaw mcp list
You should see agentcentral listed with its URL. To inspect the full config:
openclaw mcp show agentcentral
Alternative: manual config file
If you prefer editing config directly, add the server to ~/.openclaw/openclaw.json:
{
"mcp": {
"servers": {
"agentcentral": {
"transport": "streamable-http",
"url": "https://mcp.agentcentral.to/mcp",
"headers": {
"Authorization": "Bearer ${AGENT_CENTRAL_API_KEY}"
}
}
}
}
}Troubleshooting
“Unauthorized” or 401 errors
Confirm AGENT_CENTRAL_API_KEY is exported in the environment OpenClaw uses. Check your key prefix in the dashboard. If you lost the full key, create a new one from the Keys tab and restart OpenClaw after updating the variable.
Tools not appearing
Verify the server URL ends with /mcp. Run openclaw mcp show agentcentral to inspect the saved config.
Slow responses
Most tool calls return in under a second. If you see timeouts, check your network connection or add “connectionTimeoutMs”: 30000 to the server definition.
New to the platform? Read how agentcentral works.
Start using tools
Try these examples:
Advertising
“Show me my top 10 campaigns by ACOS for the last 7 days.”
“Which search terms drove the most ad spend last week with zero sales?”
“Lower the bid on keyword ‘dog treats’ to $1.50 in campaign ‘Pet Supplies SP’.”
Inventory
“What’s my current FBA inventory for ASIN B0EXAMPLE?”
“Which SKUs have fewer than 14 days of cover?”
“Show me today’s sales so far.”
Rankings
“How did my keyword rankings change yesterday for ‘wireless earbuds’?”
“Show me rank positions with search volume for my top keywords.”
Finance
“Break down the fees for ASIN B0EXAMPLE.”
“What’s the profitability on my top 5 SKUs?”
Available tools
agentcentral exposes 144 data tools across 6 domains, plus utilities for account onboarding, key status, action history, and product feedback:
| Domain | Tools | Examples |
|---|---|---|
| Ads (read) | 25 | Campaign performance, portfolio rollups, campaign snapshots, DSP, Brand Store insights, budget pacing, search terms, SQP, ads coverage evidence, Brand Metrics, TACOS |
| Ads (direct API) | 10 | Bid recommendations, budget recommendations, ad eligibility, audience segments, DSP advertiser/entity records, live SP/SB/SD entity state, and targeting options |
| Ads (write) | 59 | Update keyword, target, ad group, campaign, budget, state, archive, audience bid adjustment, campaign/ad group/product ad/target creation, ad group/product ad lifecycle, SD archive operations, and negative targeting writes |
| Inventory (read) | 22 | FBA inventory, storage fees, listing registry, risk triage, inbound shipments, sales velocity, orders, returns, days of cover |
| Inventory (direct API) | 7 | Buy Box, pricing history, Subscribe & Save offers, FBA eligibility |
| Finance | 4 | Payment transactions, financial events, profitability review, settlement economics |
| Catalog | 12 | Product details, sales ranks, A+ Content, variations, customer feedback, listing quality, catalog cleanup, create listing, update listing, update price, update quantity |
| Ranking | 1 | Keyword rank positions, changes, and search-volume view |
| Fulfillment | 4 | MCF orders, shipping preview, create order, manage returns |
For the full tool reference, ask your agent: “List all available agentcentral tools.”