Skip to main content
Reaudit - AI Search Optimization Platform
Services
Agencies
AI Rankings
Pricing
Contact
Log in

Footer

500+ Companies
Trust Reaudit
99.9% Uptime
Reliable Service
Global Coverage
Worldwide Support
Reaudit
Enterprise GEO Intelligence Platform

Advanced AI-powered GEO auditing and competitive intelligence for enterprise businesses. Dominate search rankings with data-driven insights.

[email protected]
+30 697 330 5186
4 Adelfon Giannidi, Moschato, Attica, Greece

Product

  • Optimization Station
  • AI Visibility
  • Content Factory
  • Reporting & Analytics
  • GTM Strategy
  • Reaudit MCP
  • AI AgentNEW

Company

  • About Us
  • Services
  • Pricing
  • Careers
  • Partners
  • Press Kit
  • Contact

Resources

  • Documentation
  • MCP Server (105 tools)
  • AI Agent & Skills
  • Help Center
  • Blog
  • AEO/GEO Glossary
  • Case Studies
  • Webinars
  • AI Rankings
  • Free Tools

Legal

  • Privacy Policy
  • Terms of Service
  • Security
  • Compliance
  • Cookie Policy

Newsletter

Stay up to date with the latest AI SEO and GEO trends.

Get updates on AI SEO, GEO insights, and new features. Unsubscribe anytime.

© 2025 Reaudit, Inc. All rights reserved.

Powered by Leadflow.tech
OverviewWhat's NewGetting StartedTools ReferenceAI Agent IntegrationUse CasesFAQ
Analytics QuerySmart Filters
React / Next.jsWordPressSite TrackingSocial MediaStripeGoogle Analytics 4

AI Agent Integration

Connect OpenClaw, Claude Code, Cursor, and other AI agents to Reaudit via MCP


Overview

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.

Prerequisites: An active Reaudit subscription (Professional, Agency, or Enterprise) and an API key from Dashboard → Tools → MCP Server.

OpenClaw

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.

Setup

Add the Reaudit MCP server to your OpenClaw configuration:

{
  "mcpServers": {
    "reaudit": {
      "url": "https://mcp.reaudit.io/sse?apiKey=YOUR_API_KEY"
    }
  }
}

Auto-Discovery

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_report
OpenClaw chains tools automatically. Ask complex questions and the agent will figure out which tools to use and in what order.

Claude Code

Claude Code is Anthropic's CLI agent with native MCP support. Add Reaudit as an MCP server with a single terminal command.

Setup

Run this command in your terminal:

claude mcp add reaudit \
  --transport sse \
  "https://mcp.reaudit.io/sse?apiKey=YOUR_API_KEY"

Example Usage

> 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_wordpress
Replace YOUR_API_KEY with your actual API key from Dashboard → Tools → MCP Server.

Cursor

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.

Setup

Go to Cursor Settings → MCP → Add Server and paste:

{
  "mcpServers": {
    "reaudit": {
      "url": "https://mcp.reaudit.io/sse?apiKey=YOUR_API_KEY"
    }
  }
}

MCP Apps

Reaudit provides four interactive MCP Apps for Cursor 2.6+:

  • Visibility Score — Live gauge showing your AI visibility score
  • Citation Tracker — Donut chart with citation distribution
  • AI Crawl Monitor — Terminal-style log of AI bot activity
  • AI Readiness Score — Score card for website optimization

Other Agents

Any agent or tool that supports the MCP protocol can connect to Reaudit. Here is the generic configuration:

AgentSetup Method
WindsurfMCP settings (URL)
VS Code Copilotsettings.json → mcp.servers
GitHub CopilotMCP config
Gemini CLIMCP config
Claude.aiOAuth (one-click, no API key)
Claude DesktopConfig file (URL)
LovableMCP integration
ReplitMCP integration
BoltMCP integration
v0MCP 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 Reference

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.

Full SKILL.md

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_report

How Agents Use SKILL.md

  • Auto-discovery — The agent reads the file once and learns all capabilities
  • Tool selection — When you ask a question, the agent matches it to the right tools
  • Workflow chaining — The agent follows recommended workflows for multi-step tasks
  • Best practices — The agent uses optimal parameters and configurations
You do not need to create or modify the SKILL.md file. Reaudit provides it automatically and keeps it updated as new tools are added.

Example Workflows

These are common multi-step workflows that agents can execute from a single prompt. Copy any prompt into your connected agent.

Full Visibility Report

Generate a complete AI visibility report comparing my brand against competitors across all platforms

get_visibility_scoreget_brand_mentionsget_competitor_comparisoncreate_report

Content Pipeline

Write an SEO-optimized article about AI search trends, translate to Greek, and publish to WordPress and social media

generate_contenttranslate_contentpublish_to_wordpressgenerate_social_postsschedule_social_post

Audit & Strategy

Run a full site audit, prioritize the critical issues, and generate a strategy to address them

list_auditsget_audit_recommendationscreate_strategygenerate_strategy_step

Analytics Dashboard

Pull all my analytics from GA4, Search Console, and Bing into a unified summary with alerts

get_analytics_hubget_ga4_analyticsget_bing_search_performancelist_analytics_alerts

FAQ


Next Steps

  • Getting Started — Per-client setup instructions
  • All 105 Tools — Complete tool reference with categories
  • Use Cases — Reporting and optimization examples
  • AI Agent & Skills — Marketing overview of agent capabilities
Was this page helpful?

On this page

OverviewOpenClawClaude CodeCursorOther AgentsSKILL.md ReferenceExample WorkflowsFAQ