{
  "info": {
    "name": "Readwise Reader — mcp.ai",
    "description": "REST API for the Readwise Reader 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/readwise_reader",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "readwise_reader_bulk_update_documents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bulk/update/documents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bulk",
            "update",
            "documents"
          ]
        },
        "description": "Partially update up to 50 Reader documents in one request and return a success or error result for every document.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"updates\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "readwise_reader_delete_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "document"
          ]
        },
        "description": "Permanently delete one Reader document by its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"document_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "readwise_reader_list_documents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/documents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "documents"
          ]
        },
        "description": "List, filter, incrementally sync, or fetch a specific Reader document. Returns one page and a cursor for the next page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": \"\",\n  \"limit\": 0,\n  \"category\": \"\",\n  \"location\": \"\",\n  \"document_id\": \"\",\n  \"next_cursor\": \"\",\n  \"updated_after\": \"\",\n  \"with_html_content\": false,\n  \"with_raw_source_url\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "readwise_reader_list_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tags"
          ]
        },
        "description": "List tags in the connected Reader library, returning one page and a cursor for the next page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "readwise_reader_save_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/save/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "save",
            "document"
          ]
        },
        "description": "Save a URL or supplied HTML as a document in the connected Reader library, with optional metadata, location, and tags. Returns the Reader document ID needed by update and delete tools.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"html\": \"\",\n  \"tags\": \"\",\n  \"notes\": \"\",\n  \"title\": \"\",\n  \"author\": \"\",\n  \"summary\": \"\",\n  \"category\": \"\",\n  \"language\": \"\",\n  \"location\": \"\",\n  \"image_url\": \"\",\n  \"saved_using\": \"\",\n  \"published_date\": \"\",\n  \"should_clean_html\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "readwise_reader_update_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "document"
          ]
        },
        "description": "Partially update supported fields on one Reader document by ID; omitted fields remain unchanged.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"seen\": false,\n  \"tags\": \"\",\n  \"notes\": \"\",\n  \"title\": \"\",\n  \"author\": \"\",\n  \"summary\": \"\",\n  \"category\": \"\",\n  \"language\": \"\",\n  \"location\": \"\",\n  \"image_url\": \"\",\n  \"document_id\": \"\",\n  \"published_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}