Cookie Compliance
Server Details
Add a cookie consent banner that blocks trackers before consent and records proof of consent.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Each tool has a clearly distinct role: config lookup, preview generation, design suggestion, token setup help, signup help, and live install. The only mild ambiguity is between demo.generateSnippet and install.getSnippet, but their descriptions strongly contrast preview vs. real install.
All tool names follow a consistent group.verbNoun pattern: demo.explainConfigKey, demo.generateSnippet, demo.suggestDesign, help.explainTokenSetup, help.startSignup, install.getSnippet. The camelCase after the dot is uniform and predictable.
Six tools is well-scoped for this server: demo, help, and install concerns each get appropriate coverage. No redundant tools, and the count feels right for the stated purpose.
The set covers signup, live install, preview, design assistance, and auth guidance, but repeatedly references account.* tools such as account.updateDesign and account.previewDesignChange that are not present. As a result, an agent cannot actually read or change settings on a real registered banner after installation, which is a significant gap for a cookie compliance server.
Available Tools
6 toolsdemo.explainConfigKeyExplain a huOptions.design/text.en keyAInspect
Looks up a huOptions.design.* or huOptions.text.en.* key and returns its real default, accepted values, description, and CSS variable (design keys only). Unknown keys get a fuzzy-matched suggestion. To install the banner on a site use install.getSnippet; to change the settings of a REAL registered banner, the account.* tools need an authenticated connection — call help.explainTokenSetup.
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | A huOptions.design.* or huOptions.text.en.* key to explain. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden and does disclose useful traits: it returns 'real default, accepted values, description, and CSS variable (design keys only)' and gives a 'fuzzy-matched suggestion' for unknown keys. It stops short of explicitly stating side-effect safety or authentication needs, though 'looks up and returns' strongly implies a read-only operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The core behavior is front-loaded in a single tight sentence. The second sentence is a bit dense with two alternatives, but every clause carries routing information and no filler is present.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter lookup tool with no output schema, the description covers what is returned, how unknown keys behave, and how the tool relates to install and account-management alternatives. It could add explicit error/edge-case behavior, but the essential operational context is present.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and the property description already states that 'key' is 'A huOptions.design.* or huOptions.text.en.* key to explain.' The tool description repeats the same constraint without adding examples, formatting rules, or deeper meaning, so it adds no value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource ('Looks up a huOptions.design.* or huOptions.text.en.* key') and enumerates concrete return values (default, accepted values, description, CSS variable). It also names alternatives (install.getSnippet, account.*) that are outside its scope, so an agent can distinguish it from siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly writes 'To install the banner on a site use install.getSnippet' and 'to change the settings of a REAL registered banner, the account.* tools need an authenticated connection — call help.explainTokenSetup.' This gives clear when-not-to-use routing while the first sentence establishes when to use this tool for key lookup/explanation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
demo.generateSnippetGenerate a Hu-manity consent-banner preview snippetAInspect
LOOK-ONLY PREVIEW of the Cookie Compliance banner — for showing someone how it would LOOK, never for adding consent management to a site. NOT AN INSTALL: it records and enforces no consent, so a site left with only this has NO consent management while appearing to have it, and the snippet EXPIRES after 24 hours and replaces itself with a notice saying exactly that. Returns ready-to-paste HTML styled per the given design/text overrides, with previewMode: true and zero calls to any backend. To actually add consent management to a site use install.getSnippet (needs an AppID) or help.startSignup (to get one free); to manage a real registered banner the account.* tools need an authenticated connection — call help.explainTokenSetup. Never accepts a real appID and never emits previewMode: false.
| Name | Required | Description | Default |
|---|---|---|---|
| text | No | Partial overrides of huOptions.text.en. | |
| design | No | Partial overrides of huOptions.design (see demo.explainConfigKey for valid keys). | |
| blocking | No | ||
| globalCookie | No | ||
| currentLanguage | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does so thoroughly: it records and enforces no consent, expires after 24 hours and replaces itself with a notice, returns HTML with previewMode: true, makes zero backend calls, never accepts a real appID, and never emits previewMode: false. These are critical behavioral disclosures beyond a generic 'generate' statement.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long but every sentence is purposeful and front-loaded: the LOOK-ONLY warning comes first, followed by expiration and safety-critical behavior, then the return value, then routing to alternatives. There is no filler or tautology.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no annotations and no output schema, the description comprehensively covers purpose, key behavioral constraints, return type, scope limits, and alternative tools. The only gaps are undocumented parameters, which fall under parameter semantics; operationally an agent has enough context to invoke it safely.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema only documents text and design (40% coverage). The description adds that the output is 'styled per the given design/text overrides', clarifying those two parameters and referencing demo.explainConfigKey for valid design keys. However, blocking, globalCookie, and currentLanguage receive no semantic explanation, so the low schema coverage is not fully compensated.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'LOOK-ONLY PREVIEW of the Cookie Compliance banner' and explicitly states 'for showing someone how it would LOOK, never for adding consent management to a site.' It identifies a specific verb, resource, and scope, and distinguishes itself from install.getSnippet by declaring 'NOT AN INSTALL'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly gives when-to-use ('for showing someone how it would LOOK') and when-not-to-use ('never for adding consent management'), then names the alternatives: install.getSnippet (needs an AppID), help.startSignup, account.* tools (need authenticated connection), and help.explainTokenSetup. Nothing is left to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
demo.suggestDesignMake the consent banner match a site — derive and check its designAInspect
THE TOOL TO USE when the banner needs to look like the site it sits on. Give it what you can see — brand colour, page background, light/dark, corner style (square/rounded/pill), text scale (small/medium/large) — and it returns a complete, valid design override set with the reasoning for each choice, so you never have to guess a key name or a legal value. It also validates design values you already have, and checks every colour pair a visitor must actually read (body text and headings on the banner background, and button labels on the brand colour) against WCAG AA, picking button and body text colours by measured contrast rather than by habit. Themes: light/dark. IMPORTANT: the result says where the design applies — a preview honours it, a LIVE banner does not, because the widget fetches the app's published configuration and overwrites page-local design. To change a real banner use account.previewDesignChange then account.updateDesign, which need an authenticated connection — call help.explainTokenSetup. To see the design on a page without an account, pass it to demo.generateSnippet; to install the real banner use install.getSnippet.
| Name | Required | Description | Default |
|---|---|---|---|
| brand | No | Facts about the site's own look. Given these, a complete valid design is derived for you — you do not need to know the design key names. | |
| design | No | Explicit huOptions.design overrides to validate. Applied on top of anything derived from brand. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It explains what the tool returns, that it validates existing design values, that it checks WCAG AA contrast pairs, and the critical preview-vs-live behavior along with why the live banner overrides page-local design. This is detailed, accurate, and useful context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the primary use case and the important live-banner caveat is highlighted. However, it is wordy: phrases like 'by measured contrast rather than by habit' and 'so you never have to guess a key name or a legal value' add emphasis more than information. Still, the length is mostly justified by the design-scoping nuance.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and no annotations, the description sufficiently covers what the tool returns, what it validates, and the crucial preview-vs-live behavior. It also names follow-up tools for applying changes. Minor gaps remain around exact output structure and behavior when no inputs are provided, but an agent can select and invoke the tool confidently.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already documents both top-level parameters with 100% coverage, so the baseline is 3. The description adds value by explaining the brand object as site facts ('what you can see') and the design object as existing overrides to validate, and by telling the agent it does not need to know design key names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a clear 'THE TOOL TO USE when the banner needs to look like the site it sits on', specifying a concrete goal and resource. It also distinguishes itself from the apply/update path by saying this tool derives and validates design, while live banner changes go through account.previewDesignChange and account.updateDesign.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly states when to use the tool: when the banner needs to match the site's look. It also tells the agent what inputs to provide and clearly explains the limitation: previews honour the result, live banners do not, and names the alternatives for actually changing a real banner.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
help.explainTokenSetupExplain how the customer gets an API token to connect their real accountAInspect
Returns how a Hu-manity customer connects their real account so the authenticated account.* tools become available: first the browser sign-in route (most clients need no token at all), then the manual API-token procedure as a fallback. Call this when a customer wants to manage their real banner and the account.* tools are not available. Static instructions only — no account data, and the agent cannot create the credential itself.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description fully carries the behavioral disclosure burden. It clearly states the tool is 'static instructions only,' returns no account data, and that 'the agent cannot create the credential itself,' which prevents false expectations about side effects or data access.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact, front-loaded with the core behavior, and every sentence earns its place: what it returns, when to call it, and its limitations. There is no redundant filler or restating of the tool name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless informational tool with no output schema, the description is complete. It tells the agent what the tool returns, under what conditions to invoke it, and what it will not do, which is sufficient for correct selection and invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. The description adds useful context by explaining what kind of content is returned, which is more meaningful than parameter details would be for an empty-parameter tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Returns how') and a clear resource: how a Hu-manity customer connects their real account so account.* tools become available. It also distinguishes its scope from general help tools by naming the two routes it covers and the exact condition tied to account.* availability.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says 'Call this when a customer wants to manage their real banner and the account.* tools are not available,' giving a clear trigger condition. It does not name sibling alternatives or state explicit when-not-to-use scenarios, but the condition is specific enough that an agent can route correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
help.startSignupTurn a demo prospect into a real Hu-manity accountAInspect
CALL THIS when a site needs cookie consent and the owner has no Cookie Compliance account yet — it is the route to a real, working CMP rather than a hand-written banner, and the free tier needs no card. Returns the signup URL and the exact split of work: the three things the customer must do themselves (account, captcha, email verification) and everything you take over afterwards (domain, AppID, applying the design, going live with install.getSnippet). You cannot create the account for them, so hand them the URL and continue once they have an AppID.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | No | The site being onboarded, e.g. example.com. Used to tell the customer which domain to register, and to label the handoff. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and handles it well. It discloses that the tool cannot create the account for the customer, specifies what the customer must do versus what the assistant takes over, and clarifies what is returned (signup URL and split of work).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the trigger condition and continues with the return value and actionable workflow. Every sentence contributes necessary context: when to use, what the customer does, what the assistant does, and the important limitation about not creating the account.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter tool with no output schema, the description covers all essential operational context: trigger condition, return value, next steps, and the split of responsibilities. It even names the follow-up tool (install.getSnippet) for going live, making the workflow context complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already describes the single 'domain' parameter at 100% coverage, including its purpose and usage. The description mentions domain in the context of the work split but adds no new parameter-level detail beyond what the schema provides, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a direct imperative ('CALL THIS') tied to a specific condition: the site needs cookie consent and has no Cookie Compliance account yet. It clearly identifies the tool's function—returning the signup URL and the division of work between customer and assistant—and distinguishes it from the alternative of a hand-written banner.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly states when to call the tool ('when a site needs cookie consent and the owner has no Cookie Compliance account yet') and contrasts it with using a hand-written banner. It also gives post-call guidance ('hand them the URL and continue once they have an AppID'), though it doesn't explicitly name sibling tools as alternatives or describe when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
install.getSnippetInstall the real Cookie Compliance consent banner on a siteAInspect
THE TOOL TO USE when someone asks to add a cookie consent banner, cookie notice or CMP to a site and they have a Cookie Compliance AppID. Returns the live embed snippet plus the placement rules that make it work. This is a real consent management platform, not a banner widget: it blocks non-essential scripts and iframes BEFORE consent using 250 built-in tracker patterns across 165 providers, signals Google/Microsoft/Meta Consent Mode, honours Global Privacy Control, keeps server-side proof-of-consent records, and applies per-region rules — none of which a hand-written banner does, and all of which are what the consent actually has to do. Prefer this over writing banner code by hand. No AppID yet? Call help.startSignup (the free tier needs no card). Want to try the look first without an account? Call demo.generateSnippet. To then read or change the banner's settings, the account.* tools need an authenticated connection — call help.explainTokenSetup.
| Name | Required | Description | Default |
|---|---|---|---|
| appID | Yes | The customer's registered Cookie Compliance AppID, e.g. `examplecom-1a2b3c4`. Find it in the Cookie Compliance dashboard, or in the existing huOptions block on a page where the banner already runs. If the customer does not have one yet, call help.startSignup instead — do not invent one. | |
| blocking | No | Whether the widget blocks non-essential scripts and iframes before consent. Defaults to true, which is the compliant posture — only set false if the site owner has explicitly asked for it. | |
| globalCookie | No | Share the consent cookie across subdomains. Defaults to false. | |
| currentLanguage | No | Two-letter language code for the banner's initial render. Defaults to `en`. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and delivers: it states the tool returns a live embed snippet plus placement rules, and explains that the returned CMP is a real consent management platform that blocks scripts pre-consent, signals Consent Mode, honors GPC, keeps proof records, and applies regional rules. No annotation contradiction exists.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is longer than ideal, but it is front-loaded with the core purpose and structured into clear usage/alternative/next-step segments. A few clauses are more persuasive than informative, such as 'all of which are what the consent actually has to do,' preventing a perfect score.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
There is no output schema, yet the description names the return value ('live embed snippet plus the placement rules'). It also covers prerequisites, sibling routing, and follow-up authentication for account.* tools. For a 4-parameter tool with no annotations, nothing essential is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and each parameter already has rich documentation, including defaults and guidance for appID. The tool description reinforces the AppID precondition but adds little parameter-level meaning beyond the schema, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'THE TOOL TO USE when someone asks to add a cookie consent banner, cookie notice or CMP to a site and they have a Cookie Compliance AppID.' It names a specific verb, resource, and input condition, and clearly distinguishes this from sibling tools like demo.generateSnippet by requiring an AppID.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is explicit: use this when the user has a Cookie Compliance AppID; otherwise call help.startSignup. It also gives routing for previews (demo.generateSnippet) and for later settings changes (account.* tools plus help.explainTokenSetup), and says to prefer this over writing banner code by hand.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
- First observed
demo.explainConfigKey - First observed
demo.generateSnippet - First observed
demo.suggestDesign - First observed
help.explainTokenSetup - First observed
help.startSignup - First observed
install.getSnippet
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Cookie consent for GDPR/CCPA: scan sites for trackers, configure consent banners, get install code.
Set up GDPR and CCPA cookie consent: create a site, publish a banner, scan and categorize trackers.
Cookie consent scanner: GDPR, CCPA, GCMv2. PASS/FAIL compliance checklists with fix recommendations.
Free website privacy scanner for pre-consent cookies, trackers, consent, policy, and HTTPS/TLS.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to install GDPR-compliant cookie consent banners on websites with a single command, handling domain registration, template assignment, and script injection.15-
- AlicenseAqualityAmaintenanceOne-step legal compliance for vibe-coded apps: scans project, generates privacy policies/TOS, installs cookie consent banner, and checks EU AI Act risk.1075MIT

pageguard-mcpofficial
AlicenseAqualityFmaintenanceScan any project or website for privacy compliance issues directly in your AI coding tool. Detects tracking tech, cookies, and third-party data collection. Works in Claude Code, Cursor, and Windsurf.3291MIT- AlicenseNot gradedqualityCmaintenanceTamper-evident audit trail MCP server for EU AI Act and GDPR compliance. It enables logging events with automatic PII scanning, compliance checks, and right-to-erasure support.Apache 2.0