Getting Started

Learn how to integrate WebEvo.ai into your workflow with our API and MCP connector through practical use cases.

REST API

Integrate website analysis into any application

MCP Connector

Connect to Claude Desktop and AI assistants

Simple Setup

Get up and running in minutes

API Use Cases

Automated SEO Monitoring

Monitor your clients' websites automatically and generate weekly reports.

// Monitor client websites daily const response = await fetch('https://api.webevo.ai/v1/scan', { method: 'POST', headers: { 'Authorization': 'Bearer YOUR_API_KEY', 'Content-Type': 'application/json' }, body: JSON.stringify({ url: 'https://client-website.com', modules: ['seo', 'performance', 'accessibility'] }) }); const result = await response.json(); console.log('SEO Score:', result.seo_score);
Agency ToolsAutomationReporting

CI/CD Performance Gates

Prevent performance regressions by testing every deployment.

# GitHub Actions workflow - name: Performance Check run: | RESULT=$(curl -X POST https://api.webevo.ai/v1/scan \ -H "Authorization: Bearer ${{ secrets.WEBEVO_KEY }}" \ -d '{"url": "${{ env.STAGING_URL }}"}') SCORE=$(echo $RESULT | jq '.performance_score') if [ $SCORE -lt 85 ]; then echo "Performance score $SCORE below threshold" exit 1 fi
DevOpsQuality GatesContinuous Testing

Competitor Benchmarking

Compare your website performance against competitors automatically.

// Batch competitor analysis const competitors = [ 'competitor1.com', 'competitor2.com', 'competitor3.com' ]; const results = await Promise.all( competitors.map(url => webevo.scan({ url, modules: ['seo', 'ux'] }) ) ); // Generate comparison report const report = generateCompetitorReport(results);
MarketingCompetitive IntelAnalytics

White-label SaaS

Build your own website analysis tool using our API as the backend.

// Your SaaS frontend import { WebEvoClient } from '@webevo/sdk'; const webevo = new WebEvoClient({ apiKey: process.env.WEBEVO_API_KEY, webhook: 'https://yourapp.com/webhooks/webevo' }); // Scan with your branding const scan = await webevo.scan({ url: userInput.website, customization: { logo: 'https://yourapp.com/logo.png', primaryColor: '#yourcolor' } });
SaaSWhite-labelCustom Branding

MCP Use Cases

Claude Desktop Assistant

Get instant website analysis and optimization advice directly in Claude.

Example conversation:
You: "Analyze example.com and tell me what's wrong"
Claude: "I'll scan that website for you..."
[WebEvo MCP connector runs analysis]
Claude: "The site has a 67/100 performance score. Main issues: Large images (2.3MB), blocking JavaScript, and missing compression. Here's a prioritized fix list..."
AI AssistantInstant AnalysisConversational

Development Workflow

Get AI-powered optimization suggestions while coding.

Development scenario:
You: "I just deployed to staging. Check if the new landing page is optimized"
Claude: "Scanning your staging environment..."
Claude: "Good news! Performance improved to 89/100. The new hero image optimization worked. However, accessibility score dropped to 78 due to missing alt text on the testimonial images. Here's the exact code fix..."
DevelopmentCode ReviewAI-Powered

Client Consultations

Prepare for client meetings with instant website analysis and talking points.

Pre-meeting prep:
You: "Analyze clientwebsite.com and create a presentation outline for optimization opportunities"
Claude: "Analysis complete. Here's a structured presentation:\n\n1. Quick Wins (Week 1):\n - Enable compression: +15 performance points\n - Optimize images: +12 performance points\n\n2. Medium Priority (Month 1):\n - Accessibility improvements\n - SEO meta tag optimization\n\n3. Long-term Strategic (Quarter 1):\n - Core Web Vitals optimization\n - Conversion funnel improvements"
ConsultingClient MeetingsPresentations

Content & SEO Strategy

Combine technical analysis with AI content recommendations.

Content optimization:
You: "Analyze my blog and suggest content improvements for better SEO"
Claude: "SEO analysis shows your blog scores 72/100. Key opportunities:\n\n• Missing H1 tags on 3 posts\n• Average reading time too low (1.2 min vs industry 3-5 min)\n• No internal linking strategy\n• Images missing alt text\n\nContent suggestions:\n• Add 'How-to' guides (high search volume)\n• Create pillar content around 'website optimization'\n• Improve existing posts with FAQs and examples"
Content StrategySEOAI Content

Quick Setup

API Setup (2 minutes)

Get API Key
Sign up and copy your API key from the dashboard
Make First Request
POST to /v1/scan with your URL and API key
Get Results
Receive comprehensive analysis in JSON format
View API Docs

MCP Setup (5 minutes)

Install MCP Server
npx @webevo/mcp-server
Configure Claude Desktop
Add WebEvo to your Claude Desktop config
Start Analyzing
Ask Claude to analyze any website
MCP Setup Guide

Next Steps