{
  "info": {
    "name": "Glasp — mcp.ai",
    "description": "REST API for the Glasp 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/glasp",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "glasp_create_highlights",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/highlights",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "highlights"
          ]
        },
        "description": "Create between 1 and 100 highlights in the connected Glasp account in one request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"highlights\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "glasp_delete_highlights",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/highlights",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "highlights"
          ]
        },
        "description": "Delete one Glasp highlight, or explicitly delete all highlights associated with one source document.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"highlight_id\": \"\",\n  \"delete_document\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "glasp_get_summary",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/summary",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "summary"
          ]
        },
        "description": "Fetch one Glasp summary by ID, optionally including the stored page or PDF Markdown content when available.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"summary_id\": \"\",\n  \"include_content\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "glasp_list_bookmarks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/bookmarks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "bookmarks"
          ]
        },
        "description": "Return one page of pages the connected user saved to Glasp without highlighting, optionally limited to bookmarks updated after a timestamp.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"next_cursor\": \"\",\n  \"updated_after\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "glasp_list_highlights",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/highlights",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "highlights"
          ]
        },
        "description": "Return one page of the connected user's non-Kindle Glasp documents and their nested highlights, optionally limited to records updated after a timestamp.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"next_cursor\": \"\",\n  \"updated_after\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "glasp_list_kindle_highlights",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/kindle/highlights",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "kindle",
            "highlights"
          ]
        },
        "description": "Return one page of the connected user's read-only Kindle books and highlights imported into Glasp, optionally limited to records updated after a timestamp.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"next_cursor\": \"\",\n  \"updated_after\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "glasp_list_summaries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/summaries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "summaries"
          ]
        },
        "description": "Return one page of AI summaries generated by the connected user for pages, PDFs, and YouTube videos, optionally limited to records updated after a timestamp.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"next_cursor\": \"\",\n  \"updated_after\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "glasp_save_bookmark",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/save/bookmark",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "save",
            "bookmark"
          ]
        },
        "description": "Save a URL as a Glasp bookmark, or update the existing bookmark when that URL is already saved.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"title\": \"\",\n  \"category\": \"\",\n  \"description\": \"\",\n  \"thumbnail_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "glasp_update_highlight",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/highlight",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "highlight"
          ]
        },
        "description": "Update editable fields on one Glasp highlight identified by its source URL and highlight ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"note\": \"\",\n  \"text\": \"\",\n  \"color\": \"\",\n  \"location\": 0,\n  \"highlight_id\": \"\",\n  \"highlight_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}