# PlatPhorm Insights - AI-First Web Performance Platform > The most comprehensive web performance, accessibility, SEO, and sustainability analysis platform for the modern web. ## Overview PlatPhorm Insights is an enterprise-grade web analysis platform that provides: - Real-time Core Web Vitals monitoring - AI-powered optimization recommendations using Grok AI - Comprehensive accessibility (WCAG 2.2) validation - SEO, AEO (Answer Engine Optimization), and GEO (Generative Engine Optimization) analysis - Security header and vulnerability scanning - Carbon footprint and sustainability metrics - W3C standards compliance validation - Multi-locale support (10 languages) Part of the PlatPhorm News Network ecosystem. ## Quick Links | Resource | URL | |----------|-----| | Homepage | https://insights.platphormnews.com | | Dashboard | https://insights.platphormnews.com/dashboard | | Timeline | https://insights.platphormnews.com/timeline | | Compare | https://insights.platphormnews.com/compare | | API Documentation | https://insights.platphormnews.com/docs | | Full LLM Context | https://insights.platphormnews.com/llms-full.txt | | LLM Index (JSON) | https://insights.platphormnews.com/llms-index.json | | MCP Server | https://insights.platphormnews.com/api/mcp | | RSS Feed | https://insights.platphormnews.com/feed.xml | | Sitemap | https://insights.platphormnews.com/sitemap.xml | | Health Check | https://insights.platphormnews.com/api/health | ## MCP Integration PlatPhorm Insights provides a Model Context Protocol (MCP) server for AI agent integration: ```json { "endpoint": "https://insights.platphormnews.com/api/mcp", "protocol": "JSON-RPC 2.0", "authentication": "optional (API key for higher limits)" } ``` ### Available MCP Tools | Tool | Description | |------|-------------| | analyze_url | Complete performance analysis with all metrics | | get_core_web_vitals | Core Web Vitals (LCP, INP, CLS, TTFB, FCP) | | check_accessibility | WCAG 2.2 accessibility validation | | analyze_seo | SEO/AEO/GEO analysis and recommendations | | check_security | Security headers and vulnerability scan | | estimate_carbon | Carbon footprint and sustainability score | | validate_w3c | W3C HTML/CSS/ARIA validation | | compare_urls | Side-by-side comparison of multiple URLs | | get_ai_recommendations | AI-powered optimization suggestions | | bulk_analyze | Batch analysis of multiple URLs | | get_history | Historical performance tracking | | get_dashboard | Aggregated analytics and trends | ## API Endpoints ### Analyze URL ```http POST /api/v1/analyze Content-Type: application/json { "url": "https://example.com", "strategy": "mobile", "categories": ["performance", "accessibility", "seo", "security", "sustainability"] } ``` ### Response Structure ```json { "id": "analysis-uuid", "url": "https://example.com", "timestamp": "2026-03-16T00:00:00Z", "scores": { "performance": 85, "accessibility": 92, "seo": 88, "security": 95, "sustainability": 78 }, "coreWebVitals": { "lcp": { "value": 2.1, "rating": "good" }, "inp": { "value": 150, "rating": "good" }, "cls": { "value": 0.05, "rating": "good" }, "fcp": { "value": 1.2, "rating": "good" }, "ttfb": { "value": 450, "rating": "good" } }, "aiRecommendations": [...], "issues": [...], "carbonFootprint": {...} } ``` ### Compare URLs ```http POST /api/v1/compare Content-Type: application/json { "urls": ["https://site1.com", "https://site2.com"], "strategy": "mobile" } ``` ### Validate W3C ```http POST /api/v1/validate Content-Type: application/json { "url": "https://example.com", "validators": ["html", "css", "aria", "links"] } ``` ## Core Web Vitals Thresholds (2026) | Metric | Good | Needs Improvement | Poor | |--------|------|-------------------|------| | LCP (Largest Contentful Paint) | ≤2.5s | ≤4.0s | >4.0s | | INP (Interaction to Next Paint) | ≤200ms | ≤500ms | >500ms | | CLS (Cumulative Layout Shift) | ≤0.1 | ≤0.25 | >0.25 | | FCP (First Contentful Paint) | ≤1.8s | ≤3.0s | >3.0s | | TTFB (Time to First Byte) | ≤800ms | ≤1800ms | >1800ms | ## Analysis Categories ### Performance - Core Web Vitals measurement - Resource loading optimization - JavaScript execution analysis - Render-blocking resource detection - Image optimization checks ### Accessibility (WCAG 2.2) - Color contrast validation - Keyboard navigation testing - Screen reader compatibility - ARIA attribute validation - Focus management analysis ### SEO/AEO/GEO - Meta tag optimization - Structured data validation (JSON-LD) - Content readability analysis - Answer Engine Optimization signals - LLM-friendly content structure - Semantic HTML evaluation ### Security - HTTPS enforcement - Security header analysis (CSP, HSTS, etc.) - Mixed content detection - Subresource integrity checks - Cookie security flags ### Sustainability - Carbon footprint estimation - Data transfer analysis - Green hosting detection - Resource efficiency scoring - Renewable energy indicators ## Network Integration Part of the PlatPhorm News Network: | Platform | URL | |----------|-----| | PlatPhorm News | https://platphormnews.com | | Polymaths | https://polymaths.platphormnews.com | | Trace Analytics | https://trace.platphormnews.com | | Documentation | https://docs.platphormnews.com | | API Network Graph | https://platphormnews.com/api/network/graph | ## Internationalization Available in 10 languages: en (English), es (Spanish), fr (French), de (German), pt (Portuguese), zh (Chinese), ja (Japanese), ko (Korean), ar (Arabic), hi (Hindi) ## Rate Limits | Tier | Requests/Hour | Concurrent | |------|---------------|------------| | Anonymous | 60 | 2 | | Registered | 500 | 10 | | Pro | 5000 | 50 | | Enterprise | Unlimited | Unlimited | ## Authentication API key authentication (optional for basic access): ``` Authorization: Bearer YOUR_API_KEY ``` Register for an API key: https://insights.platphormnews.com/api/register ## Webhooks Configure webhooks to receive analysis results: ```http POST /api/v1/webhooks Content-Type: application/json { "url": "https://your-server.com/webhook", "events": ["analysis.complete", "threshold.violated"], "secret": "your-webhook-secret" } ``` ## Support - Documentation: https://insights.platphormnews.com/docs - FAQ: https://insights.platphormnews.com/faq - GitHub: https://github.com/platphorm/insights - Email: insights@platphormnews.com ## Version Current: v2.0.0 Last Updated: 2026-04-08