get_decision_history
Retrieve the complete audit trail of decisions made for an idea, enabling transparent tracking of its evolution and management history.
Instructions
Get the complete decision history (audit trail) for an idea.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ideaId | Yes | The ID of the idea to get history for |
Implementation Reference
- src/mcp/tools/proxyTools.ts:296-308 (schema)Definition and input schema for the `get_decision_history` tool. This tool is proxied to the main application via `idealiftClient.mcpProxy`.
{ name: 'get_decision_history', description: 'Get the complete decision history (audit trail) for an idea.', inputSchema: { type: 'object' as const, properties: { ideaId: { type: 'string', description: 'The ID of the idea to get history for' }, }, required: ['ideaId'], }, annotations: { readOnlyHint: true, destructiveHint: false, openWorldHint: true }, _meta: { 'openai/visibility': 'public' }, },