{
  "info": {
    "name": "Moderation API — mcp.ai",
    "description": "REST API for the Moderation API 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/moderationapi",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "moderationapi_evaluate_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/evaluate/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "evaluate",
            "content"
          ]
        },
        "description": "Evaluate content without retaining it or adding it to a review queue, and return policy findings and the recommended moderation action.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"channel\": \"\",\n  \"content\": {},\n  \"metadata\": {},\n  \"author_id\": \"\",\n  \"meta_type\": \"\",\n  \"timestamp\": 0,\n  \"content_id\": \"\",\n  \"client_action\": {},\n  \"conversation_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moderationapi_execute_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/execute/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "execute",
            "action"
          ]
        },
        "description": "Apply a discovered moderation action to content items or authors. Actions can reject content or block or suspend authors and may be irreversible; inspect LIST_ACTIONS before calling.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"queue_id\": \"\",\n  \"action_key\": \"\",\n  \"author_ids\": \"\",\n  \"content_ids\": \"\",\n  \"duration_ms\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moderationapi_get_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account"
          ]
        },
        "description": "Return the connected Moderation API account, plan, current project, and current quota values.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moderationapi_get_review_queue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/review/queue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "review",
            "queue"
          ]
        },
        "description": "Return metadata and item counts for a review queue by ID. Requires the paid review-queue add-on; contact Moderation API sales if review queues are not enabled for the connected organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"queue_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moderationapi_get_wordlist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/wordlist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "wordlist"
          ]
        },
        "description": "Return one wordlist and its current words by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"wordlist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moderationapi_list_actions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/actions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "actions"
          ]
        },
        "description": "List moderation actions available to the organization, optionally restricted to a review queue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"queue_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moderationapi_list_review_queue_items",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/review/queue/items",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "review",
            "queue",
            "items"
          ]
        },
        "description": "List and filter one page of moderation items in a review queue. Requires the paid Moderation API review-queue add-on.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"queue_id\": \"\",\n  \"author_id\": \"\",\n  \"page_size\": 0,\n  \"sort_field\": \"\",\n  \"sort_direction\": \"\",\n  \"include_resolved\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moderationapi_list_wordlists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/wordlists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "wordlists"
          ]
        },
        "description": "List the organization's wordlists and their identifiers.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moderationapi_modify_wordlist_words",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/modify/wordlist/words",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "modify",
            "wordlist",
            "words"
          ]
        },
        "description": "Add words to or remove words from an existing wordlist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"words\": \"\",\n  \"operation\": \"\",\n  \"wordlist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moderationapi_set_review_queue_item_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/review/queue/item/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "review",
            "queue",
            "item",
            "status"
          ]
        },
        "description": "Mark a review queue item resolved or return it to pending. Requires the paid review-queue add-on.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"comment\": \"\",\n  \"item_id\": \"\",\n  \"queue_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "moderationapi_submit_content_for_moderation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/submit/content/for/moderation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "submit",
            "content",
            "for",
            "moderation"
          ]
        },
        "description": "Evaluate content and allow Moderation API to retain it and add it to a review queue according to the project's configuration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"channel\": \"\",\n  \"content\": {},\n  \"metadata\": {},\n  \"author_id\": \"\",\n  \"meta_type\": \"\",\n  \"timestamp\": 0,\n  \"content_id\": \"\",\n  \"client_action\": {},\n  \"conversation_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}