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);
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
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);
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'
}
});
MCP Use Cases
Claude Desktop Assistant
Get instant website analysis and optimization advice directly in Claude.
Development Workflow
Get AI-powered optimization suggestions while coding.
Client Consultations
Prepare for client meetings with instant website analysis and talking points.
Content & SEO Strategy
Combine technical analysis with AI content recommendations.