Connect OpenClaw, Claude Code, Cursor, and other AI agents to Reaudit via MCP
Reaudit's MCP server lets any AI agent access 105 tools for AI visibility monitoring, SEO audits, content generation, analytics, and publishing. Agents connect via the standard Model Context Protocol (MCP) using SSE or Streamable HTTP transport.
For agents that support SKILL.md auto-discovery (like OpenClaw), Reaudit provides a skill file that teaches the agent all available tools, optimal workflows, and best practices — no manual configuration needed.
OpenClaw is an open-source AI agent that supports SKILL.md auto-discovery. Once configured, OpenClaw automatically learns all 105 Reaudit tools and can execute complex multi-step workflows.
Add the Reaudit MCP server to your OpenClaw configuration:
{
"mcpServers": {
"reaudit": {
"url": "https://mcp.reaudit.io/sse?apiKey=YOUR_API_KEY"
}
}
}OpenClaw reads the SKILL.md file to discover all tools automatically. No further setup is needed — just start prompting:
> Check my AI visibility across all platforms and generate a report
OpenClaw automatically runs:
reaudit: list_projects
reaudit: get_visibility_score
reaudit: get_brand_mentions
reaudit: get_competitor_comparison
reaudit: create_reportClaude Code is Anthropic's CLI agent with native MCP support. Add Reaudit as an MCP server with a single terminal command.
Run this command in your terminal:
claude mcp add reaudit \
--transport sse \
"https://mcp.reaudit.io/sse?apiKey=YOUR_API_KEY"> Audit my site, fix SEO issues, and publish an optimized article
Claude Code automatically runs:
reaudit: list_audits
reaudit: get_audit_recommendations
reaudit: generate_content
reaudit: publish_to_wordpressYOUR_API_KEY with your actual API key from Dashboard → Tools → MCP Server.Cursor is an AI-first code editor with built-in MCP integration. Reaudit also supports interactive MCP Apps that render visual dashboards directly in the Cursor IDE.
Go to Cursor Settings → MCP → Add Server and paste:
{
"mcpServers": {
"reaudit": {
"url": "https://mcp.reaudit.io/sse?apiKey=YOUR_API_KEY"
}
}
}Reaudit provides four interactive MCP Apps for Cursor 2.6+:
Any agent or tool that supports the MCP protocol can connect to Reaudit. Here is the generic configuration:
| Agent | Setup Method |
|---|---|
| Windsurf | MCP settings (URL) |
| VS Code Copilot | settings.json → mcp.servers |
| GitHub Copilot | MCP config |
| Gemini CLI | MCP config |
| Claude.ai | OAuth (one-click, no API key) |
| Claude Desktop | Config file (URL) |
| Lovable | MCP integration |
| Replit | MCP integration |
| Bolt | MCP integration |
| v0 | MCP integration |
Generic MCP configuration (works with any client):
{
"mcpServers": {
"reaudit": {
"url": "https://mcp.reaudit.io/sse?apiKey=YOUR_API_KEY"
}
}
}For detailed per-client instructions, see the Getting Started guide.
SKILL.md is a standard file that AI agents read to discover available tools and workflows. Agents like OpenClaw and Claude Code use this file to understand what Reaudit can do, which tools are available, and how to chain them for common tasks.
name: reaudit
description: AI visibility monitoring, SEO audits,
content generation, analytics, and publishing
via 105 MCP tools
# Tool Categories (105 total)
# - AI Visibility (3): brand mentions, scores, competitor comparison
# - SEO Audits (4): site audits, recommendations, alerts
# - Content Generation (9): generate, edit, translate, optimize
# - GTM Strategy (9): strategies, steps, content items
# - Analytics Hub (9): GA4, Search Console, Bing, Clarity
# - Paid Intelligence (13): ad creatives, campaigns, ROI
# - Publishing (5): WordPress, React/webhook, calendar
# - Social Media (5): generate, schedule, publish posts
# - Prompt Tracking (7): topics, prompts, AI responses
# - Site Tracking (5): Cloudflare, AI referrals, Webflow, Wix
# - Competitors (3): track, add, analyze
# - Reddit Monitoring (3): monitors, leads, discussions
# - Indexing (3): connections, URL submission, sync
# - Sources & Outreach (4): citations, authors, opportunities
# - Reports & Grids (11): reports, action grids, agent analytics
# - Account & Budget (9): projects, settings, usage, budget
# - Analytics Query (3): flexible data queries
# Recommended Workflows
# 1. Visibility check: get_visibility_score → get_brand_mentions → get_competitor_comparison
# 2. Content pipeline: generate_content → translate_content → publish_to_wordpress
# 3. Full audit: list_audits → get_audit_recommendations → create_strategy
# 4. Analytics: get_analytics_hub → get_ga4_analytics → create_reportThese are common multi-step workflows that agents can execute from a single prompt. Copy any prompt into your connected agent.
Generate a complete AI visibility report comparing my brand against competitors across all platforms
Write an SEO-optimized article about AI search trends, translate to Greek, and publish to WordPress and social media
Run a full site audit, prioritize the critical issues, and generate a strategy to address them
Pull all my analytics from GA4, Search Console, and Bing into a unified summary with alerts
On this page