{
  "info": {
    "name": "Moz — mcp.ai",
    "description": "REST API for the Moz 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/moz",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "moz_fetch_metadata_index",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/metadata/index",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "metadata",
            "index"
          ]
        },
        "description": "Tool to fetch current index metadata from Moz via JSON-RPC. Returns an index ID that changes when the data in the index is updated. Use when you need to track index updates or verify the current index",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"request_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moz_fetch_site_metrics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/site/metrics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "site",
            "metrics"
          ]
        },
        "description": "Tool to fetch site metrics from Moz including Domain Authority, Page Authority, Spam Score, and link counts. Use when you need SEO metrics for a domain or specific URL. Returns comprehensive link and ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"request_id\": \"\",\n  \"site_query\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moz_get_global_top_root_domains",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/global/top/root/domains",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "global",
            "top",
            "root",
            "domains"
          ]
        },
        "description": "Tool to get the top 500 root domains across the entire web index sorted by Domain Authority. Returns the highest authority domains globally with Domain Authority, Spam Score, and linking domains count",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"next_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moz_get_usage_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/usage/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "usage",
            "data"
          ]
        },
        "description": "Tool to get API usage data including the number of rows consumed. Use when you need to track API usage for a specific time range or the current billing period.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"start\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moz_global_top_pages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/global/top/pages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "global",
            "top",
            "pages"
          ]
        },
        "description": "Tool to fetch global top pages from Moz. Use when you need a paginated list of highest authority pages.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"next_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moz_index_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/index/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "index",
            "metadata"
          ]
        },
        "description": "Tool to fetch link index metadata from Moz. Use when you need the current index ID (which changes when the index updates) and the dates of Spam Score model updates. Use after authenticating with Moz A",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moz_link_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/link/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "link",
            "status"
          ]
        },
        "description": "Tool to check if source URLs link to a target URL. Use when you need to verify inbound links from multiple sources to a target.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"target\": \"\",\n  \"sources\": \"\",\n  \"source_scope\": \"\",\n  \"target_scope\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moz_list_global_top_domains",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/global/top/domains",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "global",
            "top",
            "domains"
          ]
        },
        "description": "Tool to get the top ranking domains globally based on Domain Authority. Use when you need the highest authority domains in the entire Moz index.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moz_list_global_top_pages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/global/top/pages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "global",
            "top",
            "pages"
          ]
        },
        "description": "Tool to fetch global top ranking pages from Moz using JSON-RPC API. Use when you need to retrieve the highest Page Authority pages in the entire Moz index.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moz_lookup_quota",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lookup/quota",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lookup",
            "quota"
          ]
        },
        "description": "Tool to lookup API quota information including remaining rows, quota limits, and usage across different quota types. Use when you need to check current quota status without consuming quota.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moz_post_top_pages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/top/pages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "top",
            "pages"
          ]
        },
        "description": "Tool to fetch the top pages on a target domain from Moz. Top pages are identified as pages with the most external links. Use when you need a list of high-authority pages on a specific domain or subdom",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"scope\": \"\",\n  \"filter\": \"\",\n  \"target\": \"\",\n  \"next_token\": \"\",\n  \"daily_history_deltas\": \"\",\n  \"daily_history_values\": \"\",\n  \"monthly_history_deltas\": \"\",\n  \"monthly_history_values\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moz_usage_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/usage/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "usage",
            "data"
          ]
        },
        "description": "Tool to fetch API usage and quota details from Moz. Use when you need to monitor current plan, quota usage, and rate limits.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"target\": \"\",\n  \"resource\": \"\",\n  \"timeframe\": \"\",\n  \"probe_endpoint\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}