Integrations

Connect your AI assistant

Three steps, about two minutes: Ready4AI speaks the Model Context Protocol, so Claude, Cursor or VS Code can fetch your generated structured data — and write the whole integration for you, on any stack.

Why this matters

Until now there were two ways to integrate Ready4AI: the WordPress plugin (easy, but WordPress only) or our REST API (any stack, but you write the code). The MCP server is the third way: your AI assistant gets direct, read-only access to your generated JSON-LD, plus integration playbooks for Next.js, Astro, static sites and more — so the integration work happens in conversation. The product that makes your site visible to AI is now the product AI knows how to install.

Three steps to connected

01

Get your API key

In your Ready4AI dashboard, open your domain and create an API key. You will need both the key and the secret.

02

Connect your assistant

Add the Ready4AI MCP server to your AI tool of choice — Claude Code, Claude.ai, Cursor, or VS Code. One command or a few lines of configuration; the snippets below cover each.

03

Ask for the integration

Tell your assistant what you want — “integrate Ready4AI structured data into this site” — and it fetches your generated content, writes the integration for your framework, and verifies the deployed result.

Set-up snippets

Claude Code

claude mcp add ready4ai \
  --env READY4AI_API_KEY=your-key \
  --env READY4AI_API_SECRET=your-secret \
  -- npx -y @ready4ai/mcp

Cursor, VS Code, or any MCP client

{
  "mcpServers": {
    "ready4ai": {
      "command": "npx",
      "args": ["-y", "@ready4ai/mcp"],
      "env": {
        "READY4AI_API_KEY": "your-key",
        "READY4AI_API_SECRET": "your-secret"
      }
    }
  }
}

Open source on GitHub — every tool is read-only, so the server can inspect and fetch but never change your account. Claude users can also install the bundled integration skill for framework playbooks and audit guidance.

What your assistant can do

get_enhanced_content

Fetches the generated JSON-LD for any page — the exact payload to embed in your page head.

check_page_integration

Inspects a live page and reports whether your structured data is present in the raw HTML — what AI crawlers actually see — and whether it is current.

coverage_report

Audits up to 50 URLs at once: which pages have generated content ready, which are still missing it. Built for agencies checking whole client sites.

validate_jsonld

Structural validation that catches the schema mistakes that break rich results and AI parsing — entirely offline.

Prefer a plugin or the raw API?

WordPress sites are best served by our plugin; everything else by MCP or the REST API.

WordPress integration