Notion

queryDatabase

Gets a list of pages contained in a database, filtered and ordered by the provided criteria.

Remote kamolc4/notion-mcp

Other tools also called queryDatabase? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The database ID."
    },
    "sorts": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Sort criteria for the results."
    },
    "filter": {
      "type": "object",
      "description": "Filter condition applied to the database query."
    },
    "page_size": {
      "type": "integer",
      "default": 100,
      "description": "Number of results to return (max 100)."
    },
    "start_cursor": {
      "type": "string",
      "description": "Pagination cursor from a previous response."
    }
  }
}
          

Provider

Notion →