You can connect Local Dominator to OpenClaw, the open-source, self-hosted AI agent runtime, by adding our connector through OpenClaw’s MCP manager. This gives your agent direct, read-only access to your SERP Tracker, Site Audit, Geogrid, AI Tracker, and Review Velocity data, so you can ask for reports and analysis in plain English instead of exporting CSVs or switching tabs.
π― Who is this for?
This is for agencies and technical teams already running OpenClaw as their self-hosted agent runtime who want live Local Dominator data available inside it without leaving the app.
- Agencies running OpenClaw on their own server, NAS, or VPS
- Technical users comfortable with a terminal (OpenClaw’s setup is CLI-first)
π What you will need
You need OpenClaw installed and running, and your Local Dominator API key. Thereβs nothing to download separately. OpenClaw fetches and runs the connector automatically the first time it connects.
-
OpenClaw installed
(openclaw.ai one-line installer)
Works with Node.js 22+
curl -fsSL https://openclaw.ai/install.sh | bash - Your Local Dominator API key, from your accountβs API settings page.
-
No separate download needed.
OpenClaw runs Local Dominatorβs official connector directly from our
hosted connector file via
npx, so there are no files to create or manage yourself.
β³ Time to complete
- ~ 10 minutes
How to Connect OpenClaw
Log into Local Dominator, go to account/API settings, and copy your key.
ld_
Keep your API key private. Treat it like a passwordβnever share it in chat, email, or a screenshot.
Run the following command in your terminal.
openclaw mcp set local-dominator '{"command":"npx","args":["-y","https://localdominator.co/wp-content/uploads/2026/08/LOCAL-1.tgz"],"env":{"LOCAL_DOMINATOR_API_KEY":"ld_your_actual_key_here"}}'
Replace
ld_your_actual_key_here
with your real Local Dominator API key.
mcp set works across OpenClaw CLI
versions, including older installs.
You can use the newer
openclaw mcp add
command instead.
openclaw mcp add local-dominator --command npx --arg "-y" --arg "https://localdominator.co/wp-content/uploads/2026/08/LOCAL-1.tgz" --env "LOCAL_DOMINATOR_API_KEY=ld_your_actual_key_here"
This command additionally proposes the connection before saving.
Run this command to view the saved connector configuration.
openclaw mcp show local-dominator
This prints the saved config so you can double-check that the key and repository name are correct.
Test the connection by requesting live Local Dominator data.
mcp set only writes the configuration.
It does not test whether the connector can successfully communicate with
Local Dominator.
The recommended way to confirm the connector is working.
Open a chat with your agent using the command below or through your connected channel.
openclaw chat
Then ask your agent:
Check my Local Dominator account status.
Successful result: You should receive real credit balances across all your modules.
Use this if your OpenClaw installation supports MCP probing.
This checks the connection without requiring a full chat turn.
openclaw mcp probe local-dominator
What You Can Ask For
Once connected, your agent can pull and summarize live data on request. You donβt need to know tool names or campaign IDs in advanceβjust describe what you want.
Check my Local Dominator account status.
Pull the SERP campaign for [client domain] and tell me which keywords dropped this week.
List open critical site audit issues for [site] and draft a client-ready summary.
Whatβs our AI Tracker visibility trend for [brand] over the last 30 days?
Show me the latest GeoGrid scan results for [business name].
Troubleshooting and FAQ
βCommand not foundβ or
mcp add doesnβt recognize
--command,
--arg, or
--env
Youβre using an older OpenClaw CLI. Use the
mcp set command from
Step 2
instead. It is the more broadly compatible option.
Asking the agent for account status doesnβt return data
Run the following command to confirm that the configuration was saved with the correct API key and repository name:
openclaw mcp show local-dominator
If the configuration looks correct but still doesnβt respond, confirm that the OpenClaw process has outbound internet access to reach localdominator.co .
npx fetch.
βLOCAL_DOMINATOR_API_KEY is not setβ or authentication errors
Recheck the API key value by running:
openclaw mcp show local-dominator
A copy-and-paste error in the JSON is the most common cause.
Tool calls ask for approval every time
Approval behavior depends on your installationβs execution policy. Run the following command to see your current settings, including the security level and whether prompts are enabled:
openclaw approvals get
Some installations, especially headless or bot-driven ones, already run
with prompts disabled by default. If yours prompts and you want to
always allow this connector, first find your
npx path:
which npx
npx is frequently a symlink
rather than the actual binary. For example,
which npx might return
/usr/local/bin/npx, while the
file it points to may be:
Check both paths with:
which npx
realpath $(which npx)
Allowlist both paths because it is not guaranteed which path OpenClawβs approval matcher checks. Having both entries costs nothing:
openclaw approvals allowlist add --agent "*" "/usr/local/bin/npx"
openclaw approvals allowlist add --agent "*" "/usr/local/lib/node_modules/npm/bin/npx-cli.js"
which and
realpath commands. The paths
above are examples and may be different on your machine.
This allowlists by binary path, not by MCP server name, so it applies
to any npx-run commandβnot only
this connector.
After adding both paths, ask the agent for account status again to confirm that the approval prompt no longer appears.