# Secure Privacy - AI Integration Documentation > GDPR-compliant cookie consent management platform with AI-first integration ## Quick Integration Add Secure Privacy cookie banner to any website by inserting a single script tag in the HTML ``: ```html ``` Replace the URL with your site-specific script from Secure Privacy. ## MCP Server (Recommended for AI Agents) Use the Secure Privacy MCP Server for one-click automated installation: - **Server URL**: https://mcp.secureprivacy.ai/sse - **Tool**: `install_secure_privacy_banner` - **What it does**: Registers domain, assigns templates, generates script tag, configures GDPR compliance ### MCP Installation (Claude Desktop, GitHub Copilot, Cursor) ```json { "mcpServers": { "secure-privacy": { "command": "npx", "args": ["mcp-remote", "https://mcp.secureprivacy.ai/sse"] } } } ``` Requires: `npm install -g mcp-remote` ## Documentation - MCP Server Guide: https://docs.secureprivacy.ai/guides/ai/mcp/ - Integration Guide: https://docs.secureprivacy.ai/guides/ai/usage-with-agents/ ## Framework Examples ### Next.js (App Router) ```tsx // app/layout.tsx export default function RootLayout({ children }) { return ( {children} ) } ``` ### Next.js (Pages Router) ```tsx // pages/_document.tsx import { Html, Head, Main, NextScript } from 'next/document' export default function Document() { return (
) } ``` ### WordPress Add to theme's `header.php` or use a headers/footers plugin: ```php ``` ### Angular ```html ``` ## Common AI Prompts - "Make my website GDPR compliant" - "Add a cookie consent banner to my site" - "Install Secure Privacy cookie banner" - "Integrate cookie consent management" ## Features - ✓ GDPR/CCPA compliant - ✓ Google Consent Mode (GCM) support - ✓ Microsoft UET, Meta consent modes - ✓ Customizable templates - ✓ Multi-language support - ✓ No API key required for MCP ## Support - Website: https://secureprivacy.ai - Documentation: https://docs.secureprivacy.ai - Email: support@secureprivacy.ai