{
  "info": {
    "name": "1password — mcp.ai",
    "description": "REST API for the 1password 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/_1password",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "_1password_create_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "item"
          ]
        },
        "description": "Creates a new item in a 1Password vault.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": \"\",\n  \"title\": \"\",\n  \"fields\": \"\",\n  \"category\": \"\",\n  \"vault_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "_1password_delete_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "item"
          ]
        },
        "description": "Permanently deletes an item from a 1Password vault.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"item_id\": \"\",\n  \"vault_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "_1password_get_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "item"
          ]
        },
        "description": "Retrieves a specific item from a vault, including all fields and secrets.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"item_id\": \"\",\n  \"vault_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "_1password_list_items",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/items",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "items"
          ]
        },
        "description": "Lists all items in a given vault.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"vault_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "_1password_list_vaults",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/vaults",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "vaults"
          ]
        },
        "description": "Lists all vaults the service account has access to.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "_1password_update_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "item"
          ]
        },
        "description": "Updates an existing item's title or field values.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"fields\": \"\",\n  \"item_id\": \"\",\n  \"vault_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}