{
  "info": {
    "name": "Curated — mcp.ai",
    "description": "REST API for the Curated 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/curated",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "curated_create_draft_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/draft/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "draft",
            "issue"
          ]
        },
        "description": "Tool to create a draft issue for a publication. Use after confirming the publication ID. Applies default settings if optional fields are omitted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"editor_note\": \"\",\n  \"issue_number\": 0,\n  \"publication_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "curated_create_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "link"
          ]
        },
        "description": "Tool to create a collected link for a publication. Use when you want to add a new link (with URL, title, etc.) to a publication's collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"image\": \"\",\n  \"title\": \"\",\n  \"category\": \"\",\n  \"description\": \"\",\n  \"publication_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "curated_list_categories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/categories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "categories"
          ]
        },
        "description": "Tool to list all categories for a publication. Use after you have the publication ID and need to fetch its categories.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"publication_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "curated_list_email_subscribers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/email/subscribers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "email",
            "subscribers"
          ]
        },
        "description": "Tool to list all email subscribers for a publication. Use after confirming the publication ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"publication_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "curated_list_issues",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/issues",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "issues"
          ]
        },
        "description": "Lists all issues (newsletters) for a Curated publication with pagination support. Use this tool to retrieve issues from a publication. You must first obtain the publication_id by calling the List Publ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"state\": \"\",\n  \"stats\": false,\n  \"per_page\": 0,\n  \"publication_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "curated_list_publications",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/publications",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "publications"
          ]
        },
        "description": "Tool to list all publications accessible by the API key. Use when you need to retrieve your publication IDs for further API calls. Example prompt: \"List my publications\".",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}