Skip to content
AuditMeAuditMe
Home/MCP/Perplexity

Connect Perplexity to AuditMe

Give Perplexity access to structured SEO audit data through AuditMe's MCP server. Real scores and issue data, not just search results.

Last updated: September 1, 2026

How It Works

Perplexity is good at finding information, but it doesn't run SEO audits. Connecting it to AuditMe fills that gap — Perplexity can query AuditMe's tools and present the results alongside its search.

What you get that web search alone can't provide: actual 152-check audit scores, issues ranked by impact, deterministic fix suggestions, and side-by-side competitor comparisons with real metrics.

Setup

Perplexity supports MCP connections through its integration settings:

  1. 1. Open Perplexity and go to Settings
  2. 2. Navigate to Integrations or MCP Servers
  3. 3. Add a new MCP server with the following configuration:
MCP Server Configuration
{
  "name": "AuditMe SEO",
  "url": "https://www.auditme.dev/api/mcp",
  "transport": "streamable-http",
  "headers": {
    "x-api-key": "your-api-key-here"
  }
}

Replace your-api-key-here with your AuditMe API key.

Without MCP: REST API

If Perplexity doesn't support MCP, you can call AuditMe's REST API directly. Perplexity can invoke these endpoints through function calling:

REST API — Get audit results
curl -X POST https://www.auditme.dev/api/audit \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com"}'
REST API — MCP tools/list
curl -X POST https://www.auditme.dev/api/mcp \
  -H "Content-Type: application/json" \
  -H "MCP-Protocol-Version: 2026-07-28" \
  -H "Mcp-Method: tools/list" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{"_meta":{}}}'

Example Prompts

"Analyze the SEO health of https://stripe.com and compare it against https://paypal.com"

Perplexity will use seo_audit on both sites and compare_competitors for the comparison.

"What are the top 3 SEO issues on https://github.com and how do I fix them?"

Perplexity will use get_opportunities and generate_fixes for specific recommendations.

"How does AuditMe score websites? What checks does it perform?"

Perplexity will use get_audit_methodology to explain the scoring system.

Limitations

Perplexity MCP support
Perplexity's MCP integration is still evolving. Check their docs for the latest setup steps.
No session state
MCP is stateless — each request is independent. Perplexity can't remember previous audit results within a conversation.
Rate limits
30 requests per minute per IP. Cache results locally if you need to run many audits.