Skip to main content
Start here if you want answers from OpenRush inside an AI agent. You can use the API directly later. You do not need to start there.
Connect OpenRush to Claude, ChatGPT, Codex, or any tool that supports MCP.

Prerequisites

You need three things:
  • An OpenRush account
  • Access to openrush.io/login
  • An AI client that can connect to MCP, such as Claude, Codex, or another MCP-capable tool

Set up MCP

1

Open the Dashboard

Go to openrush.io/login and sign in.
2

Open Setup

In the Dashboard, open Setup.This page shows the MCP URL and setup instructions for supported clients.
3

Connect your AI client

Follow the instructions for your client.For Claude, add OpenRush as a custom connector. For Codex, add the MCP URL to your Codex config and run codex mcp login openrush.
4

Approve access

Complete the browser sign-in and approve OpenRush access when your AI client asks.
5

Ask your first question

Try a plain-English question:
Analyze stripe.com. Who are its organic competitors, what keywords matter, and what should I look at next?

What happens after setup

After setup, your agent can call OpenRush when it needs marketing data.
1You ask a normal question
2Your agent calls OpenRush
3You get a useful answer

Good first questions

Use normal language. Your agent can decide which OpenRush tool to call.
  • “Find my top search competitors for example.com.”
  • “Find keyword gaps between my site and these competitors.”
  • “Inspect the SERP for best crm for startups.”
  • “Audit my website and tell me what to fix first.”
  • “Which page on this competitor site is winning the most traffic?”

Check usage and credits

Use the Dashboard for account details:

Developer option

If you are building a server-side integration, create an API key in API access, then call the REST API directly.
curl -X POST "https://api.openrush.io/v1/tools/inspect_domain" \
  -H "Authorization: Bearer or_your_key" \
  -H "Content-Type: application/json" \
  -d '{"domain":"stripe.com"}'
Developers should also call /v1/capabilities to see which tools are enabled:
curl "https://api.openrush.io/v1/capabilities"
Most users should start with MCP in the Dashboard. Use direct API calls only when you are building your own software around OpenRush.