Skip to main content
Glama
Mrshahidali420

Google Search Console MCP Server

gsc_setup

Walks you through setting up the Google Search Console MCP server: verifies OAuth credentials, user consent, browser profile, and extension, then tells you the next step to finish.

Instructions

Set this server up, one step at a time. Call it, do what it says, call it again — repeat until ok is true.

IDEMPOTENT and SAFE TO CALL REPEATEDLY. It spends no Search Console indexing quota and makes at most one API call (verifying the stored sign-in still works). Every call re-reports the whole state from scratch, so there is no session to resume and no order to get wrong: if you have lost track of where setup got to, just call it again.

There are four steps, checked in order: oauth_client (credentials to sign in with), consent (the user approves Google's consent screen), browser (a Chromium browser with a profile exists), extension (the gsc-mcp bridge extension is loaded in the profile this server recommends). The FIRST unsatisfied step is returned as next and the call stops there — later steps are meaningless until it is done.

Returns {"ok": bool, "done": [step], "pending": [step], "next": {"step", "action", "url"?, "path"?} | None}. ok is true, and next is null, only when all four steps are satisfied. next.action is a plain-English instruction to relay to the user. next.url, when present, is the Google consent URL to open. next.path, when present, is the folder to choose in the browser's "Load unpacked" dialog.

open_browser (default true) opens the consent URL in the user's default browser when a NEW consent is started. A repeat call while one is already pending returns the SAME url and opens nothing — the pending consent screen is the only one whose redirect will be accepted, so never assume a second call means a second link.

PRIVACY: no email address, no token field, no PKCE verifier and no authorization code is ever returned. The only filesystem path returned is next.path, which is this server's own extension directory.

Never raises. An unexpected fault comes back as next.step: "unexpected" with an action to retry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
open_browserNo
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It thoroughly discloses idempotency, safety, that it spends no Search Console indexing quota, makes at most one API call, re-reports entire state, returns the same URL for pending consent, never raises, and gives privacy guarantees. This goes beyond basic expectations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is lengthy but every sentence serves a purpose: usage pattern, idempotency, step enumeration, return format, parameter semantics, privacy, and error behavior. It is well-structured with clear paragraphs and no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given there is no output schema, the description fully explains the return object structure, including ok, done, pending, next, and the meaning of null next. It also covers edge cases like unexpected faults. All necessary behavioral and operational details are present for the agent to use the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema only lists open_browser as a boolean with a default, with 0% description coverage. The description fully compensates by explaining exactly what open_browser does: opens the consent URL when a new consent starts, and that a repeat call while pending returns the same URL and opens nothing. This adds critical meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Set this server up, one step at a time' and enumerates the four specific steps (oauth_client, consent, browser, extension), distinguishing it from sibling tools that handle jobs, status, performance, etc. The resource and action are specific.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit iterative usage guidance: 'Call it, do what it says, call it again — repeat until ok is true' and explains that if you lose track, just call again. It also covers open_browser behavior on repeat calls. However, it does not explicitly mention when not to use it or contrast with alternative tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Mrshahidali420/google-search-console-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server