Skip to main content
Glama
rgellis

Google Search Console MCP Server

by rgellis

Add Site

add_site

Add a property to Google Search Console by providing its site URL. Verification is required afterward to complete setup.

Instructions

Add a property to Search Console. Requires verification afterwards.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYesProperty identifier to add.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It does disclose one meaningful post-condition (verification is required after adding), which is real behavioral context. However, it omits idempotency behavior, required auth level, and the outcome when the site already exists.

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?

Two short sentences with zero filler; the core action is front-loaded and the verification caveat follows immediately.

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

Completeness3/5

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

An output schema exists, so return values need not be explained. For a mutation tool with no annotations, though, the description is thin: it does not cover permissions, duplicate-handling, or what verification entails, which are the main things an agent would need.

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

Parameters3/5

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

There is a single parameter with 100% schema description coverage, so the schema already defines site_url as the property identifier. The description adds no format guidance (e.g. URL vs domain property syntax), so baseline 3 applies.

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

Purpose4/5

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

The description states a specific verb and resource ("Add a property to Search Console"), which clearly distinguishes it from siblings like delete_site and list_sites. It stops short of naming an alternative or contrast condition, but the action is unambiguous.

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

Usage Guidelines3/5

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

Usage is implied by the verb and the note that verification is required afterwards, but the description never states when to add a site versus other management tools, nor any prerequisites (permissions, ownership) or what to do if the property already exists.

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