An MCP server that automatically integrate GDPR-compliant cookie consent banners into websites
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-secureprivacy-secure-privacy-mcp-secureprivacy": {
"args": [
"mcp-remote",
"https://mcp.secureprivacy.ai/sse"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A remote Model Context Protocol (MCP) server that enables AI agents like Claude Desktop, GitHub Copilot, and Cursor to automatically integrate GDPR-compliant cookie consent banners into websites with a single command.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'mcp-remote' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
mcp-remote exposed to OS command injection via untrusted MCP server connections
mcp-remote is exposed to OS command injection when connecting to untrusted MCP servers due to crafted input from the authorization_endpoint response URL
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 60-95% fewer tokens, same answers. Library, proxy, MCP server.
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
One local source for the MCP servers, tools, and memory your AI coding agents share, synced into each tool's native config with a review gate and a receipt for every change. No daemon, no lock-in.
MCP Security Weekly
Get CVE alerts and security updates for io.github.secureprivacy/secure-privacy-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A remote Model Context Protocol (MCP) server that enables AI agents like Claude Desktop, GitHub Copilot, and Cursor to automatically integrate GDPR-compliant cookie consent banners into websites with a single command.
Built on Cloudflare Workers, this MCP server provides a one-click solution for implementing Secure Privacy's cookie consent management platform, handling domain registration, template assignment, and script injection seamlessly.
The Model Context Protocol (MCP) is an open standard that enables AI assistants to securely connect to external tools and data sources. It allows AI agents to perform actions on your behalf, making complex multi-step workflows as simple as a single conversational request.
install_secure_privacy_bannerFully install Secure Privacy cookie banner on a website in one step. This is the primary tool that orchestrates the entire installation process.
What it does:
Response includes:
Simply ask your AI agent in natural language:
"Add a cookie banner to my website"
"Make my site GDPR compliant"
"Install Secure Privacy on my website"
"I need cookie consent management"
The AI will automatically use the Secure Privacy MCP to set everything up and provide you with the script tag to add to your website.
Install the mcp-remote proxy:
npm install -g mcp-remote
Open Claude Desktop and go to Settings > Developer > Edit Config
Add this configuration:
{
"mcpServers": {
"secure-privacy": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.secureprivacy.ai/sse"
]
}
}
}
Restart Claude Desktop
Start using it! Ask Claude: "Add a cookie banner to my website"
Install the mcp-remote package globally:
npm install -g mcp-remote
Open VS Code Settings (JSON) and add the MCP configuration:
{
"github.copilot.chat.mcp.servers": {
"secure-privacy": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.secureprivacy.ai/sse"
]
}
}
}
Restart VS Code
Use Copilot Chat and ask: "Add Secure Privacy cookie banner to my site"
Install the mcp-remote proxy:
npm install -g mcp-remote
Open Cursor Settings and navigate to the MCP configuration
Add the Secure Privacy MCP server:
{
"mcpServers": {
"secure-privacy": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.secureprivacy.ai/sse"
]
}
}