Google Search Console

PassAudited by ClawScan on May 1, 2026.

Overview

This is a coherent Google Search Console integration, but it uses Membrane OAuth access and can perform account-changing Search Console actions, so users should review permissions carefully.

Before installing, verify the Membrane CLI package, understand that Membrane will mediate Google Search Console authentication, and require confirmation before any action that adds, deletes, submits, or otherwise changes Search Console resources.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Installing the CLI gives locally installed third-party code the ability to run on the user's machine.

Why it was flagged

The skill asks users to install a global npm package using the moving @latest tag. This is disclosed and central to the integration, but it relies on external package provenance.

Skill content
npm install -g @membranehq/cli@latest
Recommendation

Install only from the official npm package, consider pinning a reviewed version, and keep normal npm supply-chain hygiene.

What this means

The connected Membrane account may be able to access Search Console properties and perform actions allowed by the granted Google permissions.

Why it was flagged

The skill delegates Google Search Console authentication and token refresh to Membrane, which is expected for this integration but grants ongoing account access.

Skill content
Membrane handles authentication and credentials refresh automatically
Recommendation

Review the OAuth consent screen, grant the least privilege available, and revoke the connection when no longer needed.

What this means

If used without confirmation, the agent could change or remove Search Console resources the user relies on.

Why it was flagged

The action catalog includes account-changing and deletion operations. These are relevant to managing Search Console, but they can affect business/SEO configuration.

Skill content
| Delete Site | delete-site | Removes a site from the user's set of Search Console sites. | ... | Delete Sitemap | delete-sitemap | Deletes a sitemap from the Sitemaps report. |
Recommendation

Require explicit user confirmation before running add, delete, submit, or other account-changing actions.

What this means

Provider-returned instructions could influence agent behavior during setup if treated as authoritative beyond the connection task.

Why it was flagged

The integration may receive provider-supplied instructions for the agent during connection setup. This is part of the disclosed Membrane workflow, but those instructions should be constrained to the user's current goal.

Skill content
`clientAction.agentInstructions` (optional) — instructions for the AI agent on how to proceed programmatically.
Recommendation

Treat returned agent instructions as data from the integration provider and follow them only when they match the user's request and expected connection flow.