{
  "info": {
    "name": "Raindrop.io — mcp.ai",
    "description": "REST API for the Raindrop.io 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/raindrop",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "raindrop_create_bookmark",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/bookmark",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "bookmark"
          ]
        },
        "description": "Save one URL as a Raindrop bookmark with optional organization and notes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"link\": \"\",\n  \"note\": \"\",\n  \"tags\": \"\",\n  \"title\": \"\",\n  \"excerpt\": \"\",\n  \"important\": false,\n  \"collection_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "raindrop_create_bookmarks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/bookmarks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "bookmarks"
          ]
        },
        "description": "Create 1 to 100 bookmarks in one request with optional organization and notes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bookmarks\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "raindrop_create_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "collection"
          ]
        },
        "description": "Create a root or nested Raindrop collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"view\": \"\",\n  \"title\": \"\",\n  \"public\": false,\n  \"parent_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "raindrop_delete_bookmark",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/bookmark",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "bookmark"
          ]
        },
        "description": "Move a bookmark to Trash or permanently delete a bookmark already in Trash, requiring the caller to state the intended deletion mode.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"permanent\": false,\n  \"raindrop_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "raindrop_delete_empty_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/empty/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "empty",
            "collection"
          ]
        },
        "description": "Delete a positive-ID collection after a best-effort check that it contains no bookmarks or child collections. Raindrop has no atomic conditional delete, so avoid concurrent changes while this action r",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collection_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "raindrop_get_bookmark",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bookmark",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bookmark"
          ]
        },
        "description": "Get one bookmark and its highlights by Raindrop ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"raindrop_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "raindrop_list_bookmarks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/bookmarks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "bookmarks"
          ]
        },
        "description": "List, search, filter, and sort bookmarks in a collection, all bookmarks, Unsorted, or Trash, returning one page and the next page number when available.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort\": \"\",\n  \"nested\": false,\n  \"search\": \"\",\n  \"per_page\": 0,\n  \"collection_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "raindrop_list_collections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/collections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "collections"
          ]
        },
        "description": "List all root and nested collections in the connected Raindrop account, including IDs, parent relationships, titles, and bookmark counts.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "raindrop_list_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tags"
          ]
        },
        "description": "List tag names and bookmark counts globally or within one collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collection_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "raindrop_update_bookmark",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/bookmark",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "bookmark"
          ]
        },
        "description": "Update selected bookmark fields, move it to another collection, or replace its tags while preserving omitted fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"link\": \"\",\n  \"note\": \"\",\n  \"tags\": \"\",\n  \"title\": \"\",\n  \"excerpt\": \"\",\n  \"important\": false,\n  \"raindrop_id\": 0,\n  \"collection_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "raindrop_update_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "collection"
          ]
        },
        "description": "Change selected properties of an existing Raindrop collection without replacing omitted properties.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"view\": \"\",\n  \"title\": \"\",\n  \"public\": false,\n  \"expanded\": false,\n  \"collection_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}