{
  "info": {
    "name": "Google Search Console — mcp.ai",
    "description": "REST API for the Google Search Console MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/google_search_console",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "google_search_console_get_sitemap",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/sitemap",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "sitemap"
          ]
        },
        "description": "Retrieves information about a specific sitemap for a site.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"feedpath\": \"\",\n  \"site_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "google_search_console_inspect_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/inspect/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "inspect",
            "url"
          ]
        },
        "description": "Inspects a url for indexing issues and status in google search console.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"site_url\": \"\",\n  \"language_code\": \"\",\n  \"inspection_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "google_search_console_list_sitemaps",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/sitemaps",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "sitemaps"
          ]
        },
        "description": "Lists all sitemaps for a site in google search console.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"site_url\": \"\",\n  \"sitemap_index\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "google_search_console_list_sites",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/sites",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "sites"
          ]
        },
        "description": "Lists all sites owned by the authenticated user in google search console.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "google_search_console_search_analytics_query",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/analytics/query",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "analytics",
            "query"
          ]
        },
        "description": "Queries google search console for search analytics data including clicks, impressions, ctr, and position metrics.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end_date\": \"\",\n  \"site_url\": \"\",\n  \"row_limit\": 0,\n  \"start_row\": 0,\n  \"data_state\": \"\",\n  \"dimensions\": \"\",\n  \"start_date\": \"\",\n  \"search_type\": \"\",\n  \"aggregation_type\": \"\",\n  \"dimension_filter_groups\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "google_search_console_submit_sitemap",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/submit/sitemap",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "submit",
            "sitemap"
          ]
        },
        "description": "Submits a sitemap to google search console for indexing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"feedpath\": \"\",\n  \"site_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}