Search LaunchNotes Feedback
launchnotes_search_feedbackSearch and filter customer feedback in LaunchNotes projects by content, sentiment, importance, and status to analyze user input.
Instructions
Search and filter customer feedback in a LaunchNotes project.
Args:
project_id (string): The ID of the project (required)
query (string, optional): Search term to find in feedback content
reaction ('happy' | 'meh' | 'sad', optional): Filter by customer sentiment
importance ('low' | 'medium' | 'high', optional): Filter by importance level
organized_state (string, optional): Filter by state ('organized', 'unorganized', 'announcement', 'idea', 'roadmap')
starred (boolean, optional): Filter by starred status
archived (boolean, optional): Filter by archived status
limit (number, optional): Number to return (max 100, default: 20)
response_format ('json' | 'markdown'): Output format (default: 'markdown')
Returns: List of feedback items with content, sentiment, importance, customer info, and timestamps
Use Cases:
"What are customers saying about Digests?"
"Show me all unhappy feedback"
"Find high importance feedback that's unorganized"
"Search feedback containing 'API integration'"
"Show me starred feedback"
Error Handling:
Returns "Project not found" if project ID doesn't exist
Returns "Authentication failed" if API token is invalid
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | The ID of the LaunchNotes project | |
| query | No | Search term to find in feedback content | |
| reaction | No | Filter by customer reaction/sentiment | |
| importance | No | Filter by importance level | |
| organized_state | No | Filter by organized state: 'organized', 'unorganized', 'announcement', 'idea', 'roadmap' | |
| starred | No | Filter by starred status | |
| archived | No | Filter by archived status | |
| limit | No | Number of feedback items to return (max 100) | |
| response_format | No | Output format: 'json' for structured data, 'markdown' for human-readable | markdown |