{
  "info": {
    "name": "Google Keep — mcp.ai",
    "description": "REST API for the Google Keep 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/keep",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "keep_add_label_to_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/label/to/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "label",
            "to",
            "note"
          ]
        },
        "description": "Anexa uma label (por nome, criada se não existir) a uma nota.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\",\n  \"label\": \"\",\n  \"unsafe\": false,\n  \"account\": \"\",\n  \"note_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_add_list_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/list/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "list",
            "item"
          ]
        },
        "description": "Adiciona um item a uma checklist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\",\n  \"text\": \"\",\n  \"checked\": false,\n  \"unsafe\": false,\n  \"account\": \"\",\n  \"note_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_add_note_collaborator",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/note/collaborator",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "note",
            "collaborator"
          ]
        },
        "description": "Compartilha uma nota com um colaborador (por email).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\",\n  \"email\": \"\",\n  \"unsafe\": false,\n  \"account\": \"\",\n  \"note_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_archive_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/archive/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "archive",
            "note"
          ]
        },
        "description": "Arquiva ou desarquiva uma nota (`archived`, default true).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\",\n  \"archived\": false,\n  \"unsafe\": false,\n  \"account\": \"\",\n  \"note_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_create_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "label"
          ]
        },
        "description": "Cria uma nova label.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_create_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "list"
          ]
        },
        "description": "Cria uma checklist no Google Keep. `items` = array de { text, checked }. Recebe a label 'keep-mcp' automaticamente.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"items\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_create_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "note"
          ]
        },
        "description": "Cria uma nota de texto no Google Keep. Recebe a label 'keep-mcp' automaticamente pra poder ser gerida depois.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"text\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_delete_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "label"
          ]
        },
        "description": "Apaga uma label pelo nome.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_delete_list_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/list/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "list",
            "item"
          ]
        },
        "description": "Remove um item de checklist por item_id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"item_id\": \"\",\n  \"unsafe\": false,\n  \"account\": \"\",\n  \"item_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_delete_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "note"
          ]
        },
        "description": "Apaga uma nota permanentemente (não dá pra desfazer).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\",\n  \"unsafe\": false,\n  \"account\": \"\",\n  \"note_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_find",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find"
          ]
        },
        "description": "Busca notas no Google Keep. Filtros opcionais: query (título/texto), labels, colors, pinned, archived, trashed (default false).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"labels\": \"\",\n  \"colors\": \"\",\n  \"pinned\": false,\n  \"archived\": false,\n  \"trashed\": false,\n  \"limit\": 0,\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_get_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "note"
          ]
        },
        "description": "Retorna uma nota (ou lista) do Google Keep pelo id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\",\n  \"account\": \"\",\n  \"note_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_list_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "accounts"
          ]
        },
        "description": "Lista as contas Google Keep vinculadas a este install (id/email, label). Use pra descobrir o `account` quando há várias.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_list_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "labels"
          ]
        },
        "description": "Lista todas as labels da conta.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_list_note_collaborators",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/note/collaborators",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "note",
            "collaborators"
          ]
        },
        "description": "Lista os colaboradores (emails) com quem a nota é compartilhada.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\",\n  \"account\": \"\",\n  \"note_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_list_note_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/note/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "note",
            "media"
          ]
        },
        "description": "Lista os blobs de mídia (imagens/áudio/desenhos) de uma nota, com links.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\",\n  \"account\": \"\",\n  \"note_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_pin_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pin/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pin",
            "note"
          ]
        },
        "description": "Fixa ou desafixa uma nota (`pinned`, default true).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\",\n  \"pinned\": false,\n  \"unsafe\": false,\n  \"account\": \"\",\n  \"note_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_remove_label_from_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/label/from/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "label",
            "from",
            "note"
          ]
        },
        "description": "Remove uma label (por nome) de uma nota.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\",\n  \"label\": \"\",\n  \"unsafe\": false,\n  \"account\": \"\",\n  \"note_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_remove_note_collaborator",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/note/collaborator",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "note",
            "collaborator"
          ]
        },
        "description": "Remove um colaborador (por email) de uma nota.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\",\n  \"email\": \"\",\n  \"unsafe\": false,\n  \"account\": \"\",\n  \"note_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_restore_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/restore/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "restore",
            "note"
          ]
        },
        "description": "Restaura uma nota da lixeira.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\",\n  \"unsafe\": false,\n  \"account\": \"\",\n  \"note_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_set_note_color",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/note/color",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "note",
            "color"
          ]
        },
        "description": "Define a cor de uma nota. Uma de: DEFAULT, RED, ORANGE, YELLOW, GREEN, TEAL, BLUE, CERULEAN, PURPLE, PINK, BROWN, GRAY.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\",\n  \"color\": \"\",\n  \"unsafe\": false,\n  \"account\": \"\",\n  \"note_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_trash_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/trash/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "trash",
            "note"
          ]
        },
        "description": "Move uma nota pra lixeira.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\",\n  \"unsafe\": false,\n  \"account\": \"\",\n  \"note_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_update_list_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/list/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "list",
            "item"
          ]
        },
        "description": "Atualiza texto e/ou estado (checked) de um item de checklist (por item_id).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"item_id\": \"\",\n  \"text\": \"\",\n  \"checked\": false,\n  \"unsafe\": false,\n  \"account\": \"\",\n  \"item_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keep_update_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "note"
          ]
        },
        "description": "Atualiza título e/ou texto de uma nota. Pra listas, edite os itens com os tools de list item.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\",\n  \"title\": \"\",\n  \"text\": \"\",\n  \"unsafe\": false,\n  \"account\": \"\",\n  \"note_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}