Productboard MCP Server

get_notes

Returns a list of all notes

Input Schema

NameRequiredDescriptionDefault
allTagsNoReturn only notes that have been assigned all of the tags in the array. Cannot be combined with anyTag
anyTagNoReturn only notes that have been assigned any of the tags in the array. Cannot be combined with allTags
companyIdNoReturn only notes for specific company ID
createdFromNoReturn only notes created since given date. Cannot be combined with last
createdToNoReturn only notes created before or equal to the given date. Cannot be combined with last
featureIdNoReturn only notes for specific feature ID or its descendants
lastNoReturn only notes created since given span of months (m), days (s), or hours (h). E.g. 6m | 10d | 24h | 1h. Cannot be combined with createdFrom, createdTo, dateFrom, or dateTo
ownerEmailNoReturn only notes owned by a specific owner email
pageCursorNoPage cursor to get next page of results
pageLimitNoPage limit
sourceNoReturn only notes from a specific source origin. This is the unique string identifying the external system from which the data came
termNoReturn only notes by fulltext search
updatedFromNoReturn only notes updated since given date
updatedToNoReturn only notes updated before or equal to the given date

Input Schema (JSON Schema)

{ "properties": { "allTags": { "description": "Return only notes that have been assigned all of the tags in the array. Cannot be combined with anyTag", "type": "string" }, "anyTag": { "description": "Return only notes that have been assigned any of the tags in the array. Cannot be combined with allTags", "type": "string" }, "companyId": { "description": "Return only notes for specific company ID", "type": "string" }, "createdFrom": { "description": "Return only notes created since given date. Cannot be combined with last", "format": "date", "type": "string" }, "createdTo": { "description": "Return only notes created before or equal to the given date. Cannot be combined with last", "format": "date", "type": "string" }, "featureId": { "description": "Return only notes for specific feature ID or its descendants", "type": "string" }, "last": { "description": "Return only notes created since given span of months (m), days (s), or hours (h). E.g. 6m | 10d | 24h | 1h. Cannot be combined with createdFrom, createdTo, dateFrom, or dateTo", "type": "string" }, "ownerEmail": { "description": "Return only notes owned by a specific owner email", "type": "string" }, "pageCursor": { "description": "Page cursor to get next page of results", "type": "string" }, "pageLimit": { "description": "Page limit", "type": "number" }, "source": { "description": "Return only notes from a specific source origin. This is the unique string identifying the external system from which the data came", "type": "string" }, "term": { "description": "Return only notes by fulltext search", "type": "string" }, "updatedFrom": { "description": "Return only notes updated since given date", "format": "date", "type": "string" }, "updatedTo": { "description": "Return only notes updated before or equal to the given date", "format": "date", "type": "string" } }, "type": "object" }