query_ideas
Execute natural language queries to analyze workspace ideas, track product feedback, and identify high-impact features using RICE scoring and aggregated signals.
Instructions
Execute a natural language query about ideas in the workspace. Examples:
"Show me high-impact features from enterprise customers"
"What are the top 5 most requested features?"
"Find bugs reported this month"
"Show ideas with the highest RICE scores"
"What feedback has come from Slack in the last week?"
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Natural language query about ideas |
Implementation Reference
- src/mcp/tools/proxyTools.ts:165-183 (schema)The tool named "query_ideas" is defined here in the proxyTools.ts list of tools.
{ name: 'query_ideas', description: `Execute a natural language query about ideas in the workspace. Examples: - "Show me high-impact features from enterprise customers" - "What are the top 5 most requested features?" - "Find bugs reported this month" - "Show ideas with the highest RICE scores" - "What feedback has come from Slack in the last week?"`, inputSchema: { type: 'object' as const, properties: { query: { type: 'string', description: 'Natural language query about ideas' }, }, required: ['query'], }, annotations: { readOnlyHint: true, destructiveHint: false, openWorldHint: true }, _meta: { 'openai/visibility': 'public' }, },