update-database
Modify an existing Notion database by updating its title, description, or properties schema using a specified database ID through integration with the Notion MCP Server.
Instructions
Update an existing database
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| database_id | Yes | ID of the database to update | |
| description | No | Optional new description as rich text array | |
| properties | No | Optional updated properties schema | |
| title | No | Optional new title as rich text array | 
Input Schema (JSON Schema)
{
  "properties": {
    "database_id": {
      "description": "ID of the database to update",
      "type": "string"
    },
    "description": {
      "description": "Optional new description as rich text array",
      "type": "array"
    },
    "properties": {
      "description": "Optional updated properties schema",
      "type": "object"
    },
    "title": {
      "description": "Optional new title as rich text array",
      "type": "array"
    }
  },
  "required": [
    "database_id"
  ],
  "type": "object"
}