{
  "info": {
    "name": "Linkhut — mcp.ai",
    "description": "REST API for the Linkhut 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/linkhut",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "linkhut_add_bookmark",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/bookmark",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "bookmark"
          ]
        },
        "description": "Adds a new bookmark to linkhut. the bookmark can be marked as private/public and read/unread, with optional tags and notes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"tags\": \"\",\n  \"shared\": false,\n  \"toread\": false,\n  \"extended\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "linkhut_delete_bookmark",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/bookmark",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "bookmark"
          ]
        },
        "description": "This tool allows users to delete a bookmark from their linkhut account by providing the bookmark url. it operates independently and only requires the url parameter to identify and remove the bookmark.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "linkhut_get_all_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "tags"
          ]
        },
        "description": "Retrieves a list of all tags and their usage counts for the authenticated user. no additional parameters required besides authentication.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "linkhut_get_bookmarks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bookmarks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bookmarks"
          ]
        },
        "description": "This tool retrieves all bookmarks from the user's linkhut account. it makes a get request to the api endpoint and handles authentication. the tool returns a list of bookmarks including details such as",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "linkhut_update_bookmark",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/bookmark",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "bookmark"
          ]
        },
        "description": "This tool allows users to update an existing bookmark in linkhut. the tool updates the metadata of a bookmark including its title, description, and tags.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"tags\": \"\",\n  \"shared\": false,\n  \"toread\": false,\n  \"extended\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}