{
  "openapi": "3.1.0",
  "info": {
    "title": "Google Search Console MCP Server",
    "description": "Google Search Console for SEO reporting: sites, sitemaps, search analytics, and URL inspection",
    "version": "1.0.0",
    "contact": {
      "name": "Hopkin",
      "url": "https://hopkin.ai"
    }
  },
  "servers": [
    {
      "url": "https://gsc.mcp.hopkin.ai",
      "description": "Production MCP endpoint"
    }
  ],
  "paths": {
    "/tools": {
      "get": {
        "operationId": "listTools",
        "summary": "List available tools",
        "description": "Returns all tools registered on this server with their names, descriptions, and input schemas.",
        "tags": [
          "discovery"
        ],
        "responses": {
          "200": {
            "description": "Tool list",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ToolList"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          }
        }
      }
    },
    "/tools/google_search_console_get_search_analytics": {
      "post": {
        "operationId": "google_search_console_get_search_analytics",
        "summary": "Get Search Analytics Data",
        "description": "Query Google Search Console search analytics data. Returns clicks, impressions, CTR, and position.\n\nArgs:\n  site_url (string, required): The Search Console property URL.\n  start_date (string, required): Start date in YYYY-MM-DD format.\n  end_date (string, required): End date in YYYY-MM-DD format (must be >= start_date).\n  dimensions (array, optional): Group by dimensions. Valid: query, page, device, country, date, searchAppearance.\n    Note: searchAppearance cannot be combined with query, page, device, or country — only with date.\n  search_type (string, optional): web (default), image, video, news, discover, googleNews.\n  dimension_filter_groups (array, optional): Filter by dimension values.\n    Note: Cannot combine aggregate_by=byPage with a page dimension filter.\n  aggregate_by (string, optional): auto (default), byPage, byProperty, byNewsShowcasePanel.\n  row_limit (int, optional): Number of rows to return. Range: [1, 25000]. Default: 25.\n  start_row (int, optional): 0-based row offset for pagination. Default: 0.\n\nReturns:\n  data: array of { keys, clicks, impressions, ctr, position }\n  rowCount, responseAggregationType, firstIncompleteDate (if data is incomplete)\n\nNote: Data freshness lag — recent dates (last 3+ days) may be incomplete. Check firstIncompleteDate in response.",
        "tags": [
          "ch-console-get-search-analytics"
        ],
        "x-mcp-annotations": {
          "readOnlyHint": true,
          "destructiveHint": false,
          "idempotentHint": false,
          "openWorldHint": true
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "site_url": {
                    "type": "string",
                    "minLength": 1,
                    "description": "The Search Console property URL (e.g. sc-domain:example.com or just example.com)."
                  },
                  "start_date": {
                    "type": "string",
                    "description": "Start date in YYYY-MM-DD format."
                  },
                  "end_date": {
                    "type": "string",
                    "description": "End date in YYYY-MM-DD format. Must be >= start_date."
                  },
                  "dimensions": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "enum": [
                        "query",
                        "page",
                        "device",
                        "country",
                        "date",
                        "searchAppearance"
                      ]
                    },
                    "description": "Group results by these dimensions. searchAppearance can only be combined with date."
                  },
                  "search_type": {
                    "type": "string",
                    "enum": [
                      "web",
                      "image",
                      "video",
                      "news",
                      "discover",
                      "googleNews"
                    ],
                    "default": "web",
                    "description": "Filter by search type. Default: web."
                  },
                  "dimension_filter_groups": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "filters": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "dimension": {
                                "type": "string",
                                "enum": [
                                  "query",
                                  "page",
                                  "device",
                                  "country",
                                  "searchAppearance"
                                ]
                              },
                              "operator": {
                                "type": "string",
                                "enum": [
                                  "equals",
                                  "notEquals",
                                  "contains",
                                  "notContains",
                                  "includingRegex",
                                  "excludingRegex"
                                ],
                                "default": "equals"
                              },
                              "expression": {
                                "type": "string",
                                "minLength": 1
                              }
                            },
                            "required": [
                              "dimension",
                              "expression"
                            ],
                            "additionalProperties": false
                          },
                          "minItems": 1
                        }
                      },
                      "required": [
                        "filters"
                      ],
                      "additionalProperties": false
                    },
                    "description": "Filter rows by dimension values."
                  },
                  "aggregate_by": {
                    "type": "string",
                    "enum": [
                      "auto",
                      "byPage",
                      "byProperty",
                      "byNewsShowcasePanel"
                    ],
                    "description": "Aggregation level. byPage cannot be combined with page dimension filters."
                  },
                  "row_limit": {
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 25000,
                    "default": 25,
                    "description": "Number of rows to return. Range: 1-25000. Default: 25."
                  },
                  "start_row": {
                    "type": "integer",
                    "minimum": 0,
                    "default": 0,
                    "description": "Zero-based row offset for pagination. Default: 0."
                  },
                  "reason": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Why this tool call is needed"
                  }
                },
                "required": [
                  "site_url",
                  "start_date",
                  "end_date",
                  "reason"
                ],
                "additionalProperties": false,
                "$schema": "http://json-schema.org/draft-07/schema#"
              },
              "examples": {
                "basic-query": {
                  "summary": "Basic query",
                  "value": {
                    "site_url": "https://example.com/",
                    "start_date": "2024-01-01",
                    "end_date": "2024-01-31",
                    "reason": "Get overall search performance"
                  }
                },
                "by-query": {
                  "summary": "By query",
                  "value": {
                    "site_url": "https://example.com/",
                    "start_date": "2024-01-01",
                    "end_date": "2024-01-31",
                    "dimensions": [
                      "query"
                    ],
                    "reason": "Get top queries"
                  }
                },
                "by-page": {
                  "summary": "By page",
                  "value": {
                    "site_url": "https://example.com/",
                    "start_date": "2024-01-01",
                    "end_date": "2024-01-31",
                    "dimensions": [
                      "page"
                    ],
                    "reason": "Get top pages"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Markdown-formatted result with structured content",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpToolResult"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          },
          "404": {
            "description": "Tool not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          },
          "422": {
            "description": "Invalid parameters — request body failed schema validation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          }
        }
      }
    },
    "/tools/google_search_console_get_top_queries": {
      "post": {
        "operationId": "google_search_console_get_top_queries",
        "summary": "Get Top Search Queries",
        "description": "Get top queries with clicks, impressions, CTR, and position. Automatically identifies high-opportunity queries (position 4-20, impressions >100, CTR <5%).\n\nArgs:\n  site_url (string, required): The Search Console property URL.\n  days (int, optional): Number of days to look back. Range: [1, 90]. Default: 28.\n  start_date / end_date (string, optional): Explicit date range (overrides days).\n  page_filter (string, optional): Filter to queries for a specific URL (exact match).\n  device (string, optional): Filter by device type. Valid: desktop, mobile, tablet.\n  search_type (string, optional): web (default), image, video, news.\n  row_limit (int, optional): Max queries to return. Default: 25.\n  start_row (int, optional): Pagination offset. Default: 0.\n\nReturns:\n  data: top query rows\n  highOpportunityQueries: queries with ranking potential (position 4-20, impressions >100, CTR <5%)\n  site_url, dateRange",
        "tags": [
          "ch-console-get-top-queries"
        ],
        "x-mcp-annotations": {
          "readOnlyHint": true,
          "destructiveHint": false,
          "idempotentHint": false,
          "openWorldHint": true
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "site_url": {
                    "type": "string",
                    "minLength": 1,
                    "description": "The Search Console property URL (e.g. sc-domain:example.com or just example.com)."
                  },
                  "days": {
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 90,
                    "default": 28,
                    "description": "Number of days to look back. Default: 28. Range: 1-90."
                  },
                  "start_date": {
                    "type": "string",
                    "description": "Override start date (YYYY-MM-DD). Takes precedence over days if both provided."
                  },
                  "end_date": {
                    "type": "string",
                    "description": "Override end date (YYYY-MM-DD). Takes precedence over days if both provided."
                  },
                  "page_filter": {
                    "type": "string",
                    "minLength": 1,
                    "description": "Filter to queries driving traffic to this page (absolute URL or relative path, e.g. \"/blog\")."
                  },
                  "device": {
                    "type": "string",
                    "enum": [
                      "desktop",
                      "mobile",
                      "tablet"
                    ],
                    "description": "Filter by device type."
                  },
                  "search_type": {
                    "type": "string",
                    "enum": [
                      "web",
                      "image",
                      "video",
                      "news",
                      "discover",
                      "googleNews"
                    ],
                    "default": "web"
                  },
                  "row_limit": {
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 25000,
                    "default": 25
                  },
                  "start_row": {
                    "type": "integer",
                    "minimum": 0,
                    "default": 0
                  },
                  "reason": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Why this tool call is needed"
                  }
                },
                "required": [
                  "site_url",
                  "reason"
                ],
                "additionalProperties": false,
                "$schema": "http://json-schema.org/draft-07/schema#"
              },
              "examples": {
                "last-28-days": {
                  "summary": "Last 28 days",
                  "value": {
                    "site_url": "https://example.com/",
                    "days": 28,
                    "reason": "Get top queries for last 28 days"
                  }
                },
                "filter-by-page": {
                  "summary": "Filter by page",
                  "value": {
                    "site_url": "https://example.com/",
                    "days": 28,
                    "page_filter": "https://example.com/blog",
                    "reason": "Queries for blog section"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Markdown-formatted result with structured content",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpToolResult"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          },
          "404": {
            "description": "Tool not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          },
          "422": {
            "description": "Invalid parameters — request body failed schema validation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          }
        }
      }
    },
    "/tools/google_search_console_compare_performance": {
      "post": {
        "operationId": "google_search_console_compare_performance",
        "summary": "Compare Search Performance (Period Over Period)",
        "description": "Compare current vs previous period performance in a single call. Makes 4 parallel API calls internally and returns deltas for clicks, impressions, CTR, and position.\n\nArgs:\n  site_url (string, required): The Search Console property URL.\n  days (int, optional): Length of each period in days. Range: [1, 90]. Default: 28.\n  current_end_date (string, optional): Override the end date of the current period (YYYY-MM-DD). Default: today minus 3 days.\n  search_type (string, optional): web (default), image, video, news.\n\nReturns:\n  currentPeriod, previousPeriod: { startDate, endDate, clicks, impressions, ctr, position }\n  delta: { clicks, clicksPct, impressions, impressionsPct, ctr, position }\n  trend: \"improving\" (clicks up >10%), \"declining\" (clicks down >10%), or \"stable\"\n  topQueries, previousTopQueries: top 50 queries for each period (may be null if sub-query failed)\n  errors: list of sub-query failures (if any) — overall metrics are always present\n\nPeriods are adjacent and non-overlapping: previousEnd + 1 day = currentStart.",
        "tags": [
          "ch-console-compare-performance"
        ],
        "x-mcp-annotations": {
          "readOnlyHint": true,
          "destructiveHint": false,
          "idempotentHint": false,
          "openWorldHint": true
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "site_url": {
                    "type": "string",
                    "minLength": 1,
                    "description": "The Search Console property URL (e.g. sc-domain:example.com or just example.com)."
                  },
                  "days": {
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 90,
                    "default": 28,
                    "description": "Window size in days for each period. Default: 28."
                  },
                  "current_end_date": {
                    "type": "string",
                    "description": "End date of the current period (YYYY-MM-DD). Default: today - 3 days (data freshness lag)."
                  },
                  "search_type": {
                    "type": "string",
                    "enum": [
                      "web",
                      "image",
                      "video",
                      "news",
                      "discover",
                      "googleNews"
                    ],
                    "default": "web"
                  },
                  "reason": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Why this tool call is needed"
                  }
                },
                "required": [
                  "site_url",
                  "reason"
                ],
                "additionalProperties": false,
                "$schema": "http://json-schema.org/draft-07/schema#"
              },
              "examples": {
                "compare-28-days": {
                  "summary": "Compare 28 days",
                  "value": {
                    "site_url": "https://example.com/",
                    "days": 28,
                    "reason": "Compare this period vs previous"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Markdown-formatted result with structured content",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpToolResult"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          },
          "404": {
            "description": "Tool not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          },
          "422": {
            "description": "Invalid parameters — request body failed schema validation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          }
        }
      }
    },
    "/tools/google_search_console_get_performance_overview": {
      "post": {
        "operationId": "google_search_console_get_performance_overview",
        "summary": "Get Search Performance Overview",
        "description": "Get a complete overview of search performance in a single call: overall metrics, top queries, top pages, and daily trend. Makes 4 parallel API calls internally.\n\nArgs:\n  site_url (string, required): The Search Console property URL.\n  days (int, optional): Number of days to look back. Range: [1, 90]. Default: 28.\n  search_type (string, optional): web (default), image, video, news.\n\nReturns:\n  overall: aggregate metrics { startDate, endDate, clicks, impressions, ctr, position }\n  topQueries: top 10 queries by clicks\n  topPages: top 10 pages by clicks\n  byDate: daily breakdown\n  dateRange: { startDate, endDate }\n  errors: list of sub-query failures (if any) — partial results are returned when sub-queries fail",
        "tags": [
          "ch-console-get-performance-overview"
        ],
        "x-mcp-annotations": {
          "readOnlyHint": true,
          "destructiveHint": false,
          "idempotentHint": false,
          "openWorldHint": true
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "site_url": {
                    "type": "string",
                    "minLength": 1,
                    "description": "The Search Console property URL (e.g. sc-domain:example.com or just example.com)."
                  },
                  "days": {
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 90,
                    "default": 28,
                    "description": "Number of days to look back. Default: 28."
                  },
                  "search_type": {
                    "type": "string",
                    "enum": [
                      "web",
                      "image",
                      "video",
                      "news",
                      "discover",
                      "googleNews"
                    ],
                    "default": "web"
                  },
                  "reason": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Why this tool call is needed"
                  }
                },
                "required": [
                  "site_url",
                  "reason"
                ],
                "additionalProperties": false,
                "$schema": "http://json-schema.org/draft-07/schema#"
              },
              "examples": {
                "overview": {
                  "summary": "Overview",
                  "value": {
                    "site_url": "https://example.com/",
                    "days": 28,
                    "reason": "Full performance overview"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Markdown-formatted result with structured content",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpToolResult"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          },
          "404": {
            "description": "Tool not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          },
          "422": {
            "description": "Invalid parameters — request body failed schema validation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          }
        }
      }
    },
    "/tools/google_search_console_check_auth_status": {
      "post": {
        "operationId": "google_search_console_check_auth_status",
        "summary": "Check Google Search Console Auth Status",
        "description": "Troubleshoot authentication issues. Only use this when another tool fails with a permission or auth error — do NOT call proactively.\n\nReturns: authenticated status, user_id, email, and a human-readable message.",
        "tags": [
          "ch-console-check-auth-status"
        ],
        "x-mcp-annotations": {
          "readOnlyHint": true,
          "destructiveHint": false,
          "idempotentHint": true,
          "openWorldHint": false
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "reason": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Why this tool call is needed"
                  }
                },
                "required": [
                  "reason"
                ],
                "additionalProperties": false,
                "$schema": "http://json-schema.org/draft-07/schema#"
              },
              "examples": {
                "check-auth": {
                  "summary": "Check auth",
                  "value": {
                    "reason": "Another tool returned an auth error, checking connection status"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Markdown-formatted result with structured content",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpToolResult"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          },
          "404": {
            "description": "Tool not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          },
          "422": {
            "description": "Invalid parameters — request body failed schema validation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          }
        }
      }
    },
    "/tools/google_search_console_list_connections": {
      "post": {
        "operationId": "google_search_console_list_connections",
        "summary": "List Google Search Console Connections",
        "description": "List the Google Search Console connections available to you — both ones you own and ones shared with you via an organization. Only Google connections with Search Console (webmasters.readonly) scope are returned. Use this to discover connection IDs for set_default / share / rename / revoke.",
        "tags": [
          "ch-console-list-connections"
        ],
        "x-mcp-annotations": {
          "readOnlyHint": true,
          "destructiveHint": false,
          "idempotentHint": true,
          "openWorldHint": false
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "reason": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Why this tool call is needed"
                  }
                },
                "required": [
                  "reason"
                ],
                "additionalProperties": false,
                "$schema": "http://json-schema.org/draft-07/schema#"
              },
              "examples": {
                "list-connections": {
                  "summary": "List connections",
                  "value": {
                    "reason": "User asked which Google Search Console accounts they have connected"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Markdown-formatted result with structured content",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpToolResult"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          },
          "404": {
            "description": "Tool not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          },
          "422": {
            "description": "Invalid parameters — request body failed schema validation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          }
        }
      }
    },
    "/tools/google_search_console_set_default_connection": {
      "post": {
        "operationId": "google_search_console_set_default_connection",
        "summary": "Set Default Google Search Console Connection",
        "description": "Set the Google Search Console connection that should be used by default for subsequent Google Search Console tool calls. The default is scoped to the calling actor (your user account, or the API key being used).",
        "tags": [
          "ch-console-set-default-connection"
        ],
        "x-mcp-annotations": {
          "readOnlyHint": true,
          "destructiveHint": false,
          "idempotentHint": true,
          "openWorldHint": false
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "connection_id": {
                    "type": "string",
                    "format": "uuid",
                    "description": "UUID of the connection to mark as the actor's default Google Search Console connection."
                  },
                  "reason": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Why this tool call is needed"
                  }
                },
                "required": [
                  "connection_id",
                  "reason"
                ],
                "additionalProperties": false,
                "$schema": "http://json-schema.org/draft-07/schema#"
              },
              "examples": {
                "set-default": {
                  "summary": "Set default",
                  "value": {
                    "connection_id": "00000000-0000-0000-0000-000000000001",
                    "reason": "User picked their primary Google Search Console workspace"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Markdown-formatted result with structured content",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpToolResult"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          },
          "404": {
            "description": "Tool not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          },
          "422": {
            "description": "Invalid parameters — request body failed schema validation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          }
        }
      }
    },
    "/tools/google_search_console_share_connection": {
      "post": {
        "operationId": "google_search_console_share_connection",
        "summary": "Share Google Search Console Connection With Organization",
        "description": "Share an owned Google Search Console connection with all members of your organization, so teammates can use it without having to reconnect Google themselves. You must be the owner of the connection.",
        "tags": [
          "ch-console-share-connection"
        ],
        "x-mcp-annotations": {
          "readOnlyHint": false,
          "destructiveHint": false,
          "idempotentHint": true,
          "openWorldHint": false
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "connection_id": {
                    "type": "string",
                    "format": "uuid",
                    "description": "UUID of the connection to mark as the actor's default Google Search Console connection."
                  },
                  "reason": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Why this tool call is needed"
                  }
                },
                "required": [
                  "connection_id",
                  "reason"
                ],
                "additionalProperties": false,
                "$schema": "http://json-schema.org/draft-07/schema#"
              },
              "examples": {
                "share-with-org": {
                  "summary": "Share with org",
                  "value": {
                    "connection_id": "00000000-0000-0000-0000-000000000001",
                    "reason": "User asked to share this Google Search Console connection with their teammates"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Markdown-formatted result with structured content",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpToolResult"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          },
          "404": {
            "description": "Tool not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          },
          "422": {
            "description": "Invalid parameters — request body failed schema validation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          }
        }
      }
    },
    "/tools/google_search_console_unshare_connection": {
      "post": {
        "operationId": "google_search_console_unshare_connection",
        "summary": "Unshare Google Search Console Connection From Organization",
        "description": "Stop sharing an owned Google Search Console connection with your organization. Teammates lose access immediately. You must be the owner.",
        "tags": [
          "ch-console-unshare-connection"
        ],
        "x-mcp-annotations": {
          "readOnlyHint": false,
          "destructiveHint": true,
          "idempotentHint": true,
          "openWorldHint": false
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "connection_id": {
                    "type": "string",
                    "format": "uuid",
                    "description": "UUID of the connection to mark as the actor's default Google Search Console connection."
                  },
                  "reason": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Why this tool call is needed"
                  }
                },
                "required": [
                  "connection_id",
                  "reason"
                ],
                "additionalProperties": false,
                "$schema": "http://json-schema.org/draft-07/schema#"
              },
              "examples": {
                "stop-sharing": {
                  "summary": "Stop sharing",
                  "value": {
                    "connection_id": "00000000-0000-0000-0000-000000000001",
                    "reason": "User no longer wants the team to access this Google Search Console connection"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Markdown-formatted result with structured content",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpToolResult"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          },
          "404": {
            "description": "Tool not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          },
          "422": {
            "description": "Invalid parameters — request body failed schema validation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          }
        }
      }
    },
    "/tools/google_search_console_rename_connection": {
      "post": {
        "operationId": "google_search_console_rename_connection",
        "summary": "Rename Google Search Console Connection",
        "description": "Rename the display name of an owned Google Search Console connection. The OAuth grant and underlying account are unaffected — this only changes the human-readable label. You must be the owner.",
        "tags": [
          "ch-console-rename-connection"
        ],
        "x-mcp-annotations": {
          "readOnlyHint": false,
          "destructiveHint": false,
          "idempotentHint": true,
          "openWorldHint": false
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "connection_id": {
                    "type": "string",
                    "format": "uuid",
                    "description": "UUID of the connection to mark as the actor's default Google Search Console connection."
                  },
                  "reason": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Why this tool call is needed"
                  }
                },
                "required": [
                  "connection_id",
                  "reason"
                ],
                "additionalProperties": false,
                "$schema": "http://json-schema.org/draft-07/schema#"
              },
              "examples": {
                "rename": {
                  "summary": "Rename",
                  "value": {
                    "connection_id": "00000000-0000-0000-0000-000000000001",
                    "display_name": "Acme — Production",
                    "reason": "User wanted a clearer label for this Google Search Console connection"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Markdown-formatted result with structured content",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpToolResult"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          },
          "404": {
            "description": "Tool not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          },
          "422": {
            "description": "Invalid parameters — request body failed schema validation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          }
        }
      }
    },
    "/tools/google_search_console_revoke_connection": {
      "post": {
        "operationId": "google_search_console_revoke_connection",
        "summary": "Revoke Google Search Console Connection",
        "description": "Revoke (soft-delete) an owned Google Search Console connection. Any defaults pointing to it are invalidated and shared org members lose access. The OAuth grant at Google is NOT revoked by this tool — the user must disconnect via the dashboard if they want to fully revoke at Google. You must be the owner.",
        "tags": [
          "ch-console-revoke-connection"
        ],
        "x-mcp-annotations": {
          "readOnlyHint": false,
          "destructiveHint": true,
          "idempotentHint": true,
          "openWorldHint": false
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "connection_id": {
                    "type": "string",
                    "format": "uuid",
                    "description": "UUID of the connection to mark as the actor's default Google Search Console connection."
                  },
                  "reason": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Why this tool call is needed"
                  }
                },
                "required": [
                  "connection_id",
                  "reason"
                ],
                "additionalProperties": false,
                "$schema": "http://json-schema.org/draft-07/schema#"
              },
              "examples": {
                "revoke": {
                  "summary": "Revoke",
                  "value": {
                    "connection_id": "00000000-0000-0000-0000-000000000001",
                    "reason": "User asked to disconnect this Google Search Console account"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Markdown-formatted result with structured content",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpToolResult"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          },
          "404": {
            "description": "Tool not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          },
          "422": {
            "description": "Invalid parameters — request body failed schema validation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          }
        }
      }
    },
    "/tools/google_search_console_developer_feedback": {
      "post": {
        "operationId": "google_search_console_developer_feedback",
        "summary": "Submit Developer Feedback",
        "description": "Submit feedback about missing tools, improvements, bugs, or workflow gaps in the Search Console MCP toolset. Not for user-facing issues (auth errors, API errors).\n\nArgs:\n  feedback_type: new_tool, improvement, bug, workflow_gap\n  title: Short description (5-200 chars)\n  description: What is needed and why (20-2000 chars)\n  current_workaround (optional): How you're working around the gap\n  priority (optional): low, medium (default), high\n\nReturns: confirmation that feedback was recorded.",
        "tags": [
          "ch-console-developer-feedback"
        ],
        "x-mcp-annotations": {
          "readOnlyHint": false,
          "destructiveHint": false,
          "idempotentHint": true,
          "openWorldHint": true
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "feedback_type": {
                    "type": "string",
                    "enum": [
                      "new_tool",
                      "improvement",
                      "bug",
                      "workflow_gap"
                    ],
                    "description": "Feedback category: new_tool (request new capability), improvement (enhance existing tool), bug (report issue), workflow_gap (missing workflow)"
                  },
                  "title": {
                    "type": "string",
                    "minLength": 5,
                    "maxLength": 200,
                    "description": "Concise title summarizing the feedback"
                  },
                  "description": {
                    "type": "string",
                    "minLength": 20,
                    "maxLength": 2000,
                    "description": "What is needed and why"
                  },
                  "current_workaround": {
                    "type": "string",
                    "maxLength": 1000,
                    "description": "Current workaround, if any"
                  },
                  "priority": {
                    "type": "string",
                    "enum": [
                      "low",
                      "medium",
                      "high"
                    ],
                    "default": "medium",
                    "description": "Impact level: low (nice-to-have), medium (improves workflow), high (blocking issue)"
                  },
                  "interface": {
                    "type": "string",
                    "enum": [
                      "MCP",
                      "CLI"
                    ],
                    "default": "MCP",
                    "description": "Interface the feedback originated from: MCP (default) or CLI"
                  },
                  "reason": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Why this tool call is needed"
                  }
                },
                "required": [
                  "feedback_type",
                  "title",
                  "description",
                  "reason"
                ],
                "additionalProperties": false,
                "$schema": "http://json-schema.org/draft-07/schema#"
              },
              "examples": {
                "missing-tool": {
                  "summary": "Missing tool",
                  "value": {
                    "feedback_type": "new_tool",
                    "title": "Submit sitemap",
                    "description": "Need ability to submit/resubmit sitemaps",
                    "priority": "medium",
                    "reason": "User asked to submit a new sitemap"
                  }
                },
                "workflow-gap": {
                  "summary": "Workflow gap",
                  "value": {
                    "feedback_type": "workflow_gap",
                    "title": "Bulk URL inspection",
                    "description": "Cannot inspect multiple URLs at once",
                    "current_workaround": "Call inspect_url one URL at a time",
                    "reason": "User had 10 URLs to check"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Markdown-formatted result with structured content",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpToolResult"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          },
          "404": {
            "description": "Tool not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          },
          "422": {
            "description": "Invalid parameters — request body failed schema validation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          }
        }
      }
    },
    "/tools/google_search_console_ping": {
      "post": {
        "operationId": "google_search_console_ping",
        "summary": "Ping Google Search Console MCP Server",
        "description": "Health check. Returns server status, version, and timestamp.",
        "tags": [
          "ch-console-ping"
        ],
        "x-mcp-annotations": {
          "readOnlyHint": true,
          "destructiveHint": false,
          "idempotentHint": true,
          "openWorldHint": false
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "message": {
                    "type": "string",
                    "maxLength": 100,
                    "description": "Optional message to echo back"
                  },
                  "reason": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Why this tool call is needed"
                  }
                },
                "required": [
                  "reason"
                ],
                "additionalProperties": false,
                "$schema": "http://json-schema.org/draft-07/schema#"
              },
              "examples": {
                "health-check": {
                  "summary": "Health check",
                  "value": {
                    "reason": "Verify server is running"
                  }
                },
                "with-message": {
                  "summary": "With message",
                  "value": {
                    "message": "hello",
                    "reason": "Test connectivity"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Markdown-formatted result with structured content",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpToolResult"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          },
          "404": {
            "description": "Tool not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          },
          "422": {
            "description": "Invalid parameters — request body failed schema validation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          }
        }
      }
    },
    "/tools/google_search_console_list_sites": {
      "post": {
        "operationId": "google_search_console_list_sites",
        "summary": "List Search Console Properties",
        "description": "List all Google Search Console properties (sites) the user has access to.\n\nUse this tool first to discover which properties are available before calling other tools.\nResults are cached for 15 minutes; pass refresh=true only when you need the latest list.\n\nArgs:\n  refresh (bool, optional): Force a fresh fetch from the API, bypassing cache. Default: false.\n\nReturns:\n  List of site properties with siteUrl and permissionLevel (siteOwner, siteFullUser, siteRestrictedUser, siteUnverifiedUser).",
        "tags": [
          "ch-console-list-sites"
        ],
        "x-mcp-annotations": {
          "readOnlyHint": true,
          "destructiveHint": false,
          "idempotentHint": false,
          "openWorldHint": true
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "refresh": {
                    "type": "boolean",
                    "description": "Force a fresh fetch from the API, bypassing cache"
                  },
                  "reason": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Why this tool call is needed"
                  }
                },
                "required": [
                  "reason"
                ],
                "additionalProperties": false,
                "$schema": "http://json-schema.org/draft-07/schema#"
              },
              "examples": {
                "list-sites": {
                  "summary": "List sites",
                  "value": {
                    "reason": "Get all Search Console properties"
                  }
                },
                "force-refresh": {
                  "summary": "Force refresh",
                  "value": {
                    "refresh": true,
                    "reason": "Need latest site list"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Markdown-formatted result with structured content",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpToolResult"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          },
          "404": {
            "description": "Tool not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          },
          "422": {
            "description": "Invalid parameters — request body failed schema validation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          }
        }
      }
    },
    "/tools/google_search_console_list_sitemaps": {
      "post": {
        "operationId": "google_search_console_list_sitemaps",
        "summary": "List Search Console Sitemaps",
        "description": "List sitemaps submitted to Google Search Console for a property.\n\nArgs:\n  site_url (string, required): The Search Console property URL (e.g. https://example.com/ or sc-domain:example.com).\n  refresh (bool, optional): Force a fresh fetch from the API, bypassing cache. Default: false.\n\nReturns:\n  List of submitted sitemaps with path, last submission date, pending/error status, and error/warning counts.",
        "tags": [
          "ch-console-list-sitemaps"
        ],
        "x-mcp-annotations": {
          "readOnlyHint": true,
          "destructiveHint": false,
          "idempotentHint": false,
          "openWorldHint": true
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "site_url": {
                    "type": "string",
                    "minLength": 1,
                    "description": "The Search Console property URL (e.g. sc-domain:example.com or just example.com)."
                  },
                  "refresh": {
                    "type": "boolean",
                    "description": "Force a fresh fetch from the API, bypassing cache"
                  },
                  "reason": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Why this tool call is needed"
                  }
                },
                "required": [
                  "site_url",
                  "reason"
                ],
                "additionalProperties": false,
                "$schema": "http://json-schema.org/draft-07/schema#"
              },
              "examples": {
                "list-sitemaps": {
                  "summary": "List sitemaps",
                  "value": {
                    "site_url": "https://example.com/",
                    "reason": "Check sitemap submission status"
                  }
                },
                "domain-property": {
                  "summary": "Domain property",
                  "value": {
                    "site_url": "sc-domain:example.com",
                    "reason": "Check sitemaps for domain property"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Markdown-formatted result with structured content",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpToolResult"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          },
          "404": {
            "description": "Tool not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          },
          "422": {
            "description": "Invalid parameters — request body failed schema validation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          }
        }
      }
    },
    "/tools/google_search_console_inspect_url": {
      "post": {
        "operationId": "google_search_console_inspect_url",
        "summary": "Inspect URL (Google Search Console)",
        "description": "Get detailed indexing and crawl status for a specific URL using the Google Search Console URL Inspection API.\n\nArgs:\n  inspection_url (string, required): Fully-qualified URL to inspect. Must be under the site_url property.\n  site_url (string, required): The Search Console property that contains the URL (e.g. https://example.com/ or sc-domain:example.com).\n  language_code (string, optional): IETF BCP-47 language code for translated issue messages (e.g. en-US).\n\nReturns:\n  verdict (PASS/FAIL/NEUTRAL), coverage state, robots.txt state, indexing state, page fetch state,\n  last crawl time, crawled as (mobile/desktop), Google canonical URL, user canonical URL, sitemap references.\n\nNote: Use google_search_console_list_sites first to discover valid site_url values.",
        "tags": [
          "ch-console-inspect-url"
        ],
        "x-mcp-annotations": {
          "readOnlyHint": true,
          "destructiveHint": false,
          "idempotentHint": false,
          "openWorldHint": true
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "site_url": {
                    "type": "string",
                    "minLength": 1,
                    "description": "The Search Console property URL (e.g. sc-domain:example.com or just example.com)."
                  },
                  "refresh": {
                    "type": "boolean",
                    "description": "Force a fresh fetch from the API, bypassing cache"
                  },
                  "reason": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Why this tool call is needed"
                  }
                },
                "required": [
                  "site_url",
                  "reason"
                ],
                "additionalProperties": false,
                "$schema": "http://json-schema.org/draft-07/schema#"
              },
              "examples": {
                "inspect-url": {
                  "summary": "Inspect URL",
                  "value": {
                    "inspection_url": "https://example.com/page",
                    "site_url": "https://example.com/",
                    "reason": "Check if page is indexed"
                  }
                },
                "with-language": {
                  "summary": "With language",
                  "value": {
                    "inspection_url": "https://example.com/page",
                    "site_url": "https://example.com/",
                    "language_code": "en-US",
                    "reason": "Check indexing with English messages"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Markdown-formatted result with structured content",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpToolResult"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/McpError"
                }
              }
            }
          },
          "404": {
            "description": "Tool not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          },
          "422": {
            "description": "Invalid parameters — request body failed schema validation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RestError"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "bearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "JWT",
        "description": "Supabase JWT or hpk_live_... API key"
      }
    },
    "schemas": {
      "McpToolResult": {
        "type": "object",
        "properties": {
          "content": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "text",
                    "resource_link"
                  ]
                },
                "text": {
                  "type": "string"
                }
              }
            }
          },
          "structuredContent": {
            "type": "object",
            "additionalProperties": true
          },
          "isError": {
            "type": "boolean"
          }
        }
      },
      "McpError": {
        "type": "object",
        "properties": {
          "isError": {
            "type": "boolean",
            "const": true
          },
          "content": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "type": {
                  "type": "string",
                  "const": "text"
                },
                "text": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "RestError": {
        "type": "object",
        "description": "Error response from REST tool endpoints (mapped from JSON-RPC error codes)",
        "properties": {
          "error": {
            "type": "string",
            "description": "Human-readable error message"
          },
          "code": {
            "type": "integer",
            "description": "JSON-RPC error code"
          },
          "data": {
            "description": "Additional error context"
          }
        },
        "required": [
          "error",
          "code"
        ]
      },
      "ToolList": {
        "type": "object",
        "properties": {
          "tools": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "name": {
                  "type": "string"
                },
                "description": {
                  "type": "string"
                },
                "inputSchema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        }
      }
    }
  },
  "security": [
    {
      "bearerAuth": []
    }
  ],
  "tags": [
    {
      "name": "discovery",
      "description": "Tool discovery and introspection"
    },
    {
      "name": "ch-console-check-auth-status",
      "description": "Ch-console-check-auth-status tools"
    },
    {
      "name": "ch-console-compare-performance",
      "description": "Ch-console-compare-performance tools"
    },
    {
      "name": "ch-console-developer-feedback",
      "description": "Ch-console-developer-feedback tools"
    },
    {
      "name": "ch-console-get-performance-overview",
      "description": "Ch-console-get-performance-overview tools"
    },
    {
      "name": "ch-console-get-search-analytics",
      "description": "Ch-console-get-search-analytics tools"
    },
    {
      "name": "ch-console-get-top-queries",
      "description": "Ch-console-get-top-queries tools"
    },
    {
      "name": "ch-console-inspect-url",
      "description": "Ch-console-inspect-url tools"
    },
    {
      "name": "ch-console-list-connections",
      "description": "Ch-console-list-connections tools"
    },
    {
      "name": "ch-console-list-sitemaps",
      "description": "Ch-console-list-sitemaps tools"
    },
    {
      "name": "ch-console-list-sites",
      "description": "Ch-console-list-sites tools"
    },
    {
      "name": "ch-console-ping",
      "description": "Ch-console-ping tools"
    },
    {
      "name": "ch-console-rename-connection",
      "description": "Ch-console-rename-connection tools"
    },
    {
      "name": "ch-console-revoke-connection",
      "description": "Ch-console-revoke-connection tools"
    },
    {
      "name": "ch-console-set-default-connection",
      "description": "Ch-console-set-default-connection tools"
    },
    {
      "name": "ch-console-share-connection",
      "description": "Ch-console-share-connection tools"
    },
    {
      "name": "ch-console-unshare-connection",
      "description": "Ch-console-unshare-connection tools"
    }
  ]
}