search_posts
Search for customer feedback posts across Canny boards using queries, status filters, and board-specific scopes to find relevant user suggestions and feature requests.
Instructions
Search for posts across Canny boards
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardIds | No | Optional array of board IDs to limit search scope | |
limit | No | Number of posts to retrieve | |
query | Yes | Search query to find posts | |
status | No | Filter by post status |
Input Schema (JSON Schema)
{
"properties": {
"boardIds": {
"description": "Optional array of board IDs to limit search scope",
"items": {
"type": "string"
},
"type": "array"
},
"limit": {
"default": 20,
"description": "Number of posts to retrieve",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search query to find posts",
"type": "string"
},
"status": {
"description": "Filter by post status",
"enum": [
"open",
"under review",
"planned",
"in progress",
"complete",
"closed"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}