Skip to main content
Glama

update_idea

Modify existing ideas by updating titles, summaries, statuses, RICE scores, or destinations to maintain accurate product feedback records.

Instructions

Update an existing idea. Can update title, summary, status, scores, etc.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ideaIdYesThe unique ID of the idea to update
titleNoNew title
summaryNoNew summary
statusNoNew status
destinationNoNew destination
riceReachNoRICE reach score (0-10)
riceImpactNoRICE impact score (0-3)
riceConfidenceNoRICE confidence (0-1)
riceEffortNoRICE effort in person-months

Implementation Reference

  • Schema definition for the 'update_idea' tool in proxyTools.ts. Note that it appears to be defined but not yet integrated into the main MCP handler in src/mcp/handler.ts.
    {
      name: 'update_idea',
      description: 'Update an existing idea. Can update title, summary, status, scores, etc.',
      inputSchema: {
        type: 'object' as const,
        properties: {
          ideaId: {
            type: 'string',
            description: 'The unique ID of the idea to update',
          },
          title: { type: 'string', description: 'New title' },
          summary: { type: 'string', description: 'New summary' },
          status: {
            type: 'string',
            enum: ['new', 'accepted', 'rejected', 'snoozed', 'expired'],
            description: 'New status',
          },
          destination: {
            type: 'string',
            enum: ['github', 'linear', 'jira', 'azure-devops', 'zendesk'],
            description: 'New destination',
          },
          riceReach: { type: 'number', description: 'RICE reach score (0-10)' },
          riceImpact: { type: 'number', description: 'RICE impact score (0-3)' },
          riceConfidence: { type: 'number', description: 'RICE confidence (0-1)' },
          riceEffort: { type: 'number', description: 'RICE effort in person-months' },
        },
        required: ['ideaId'],
      },
      annotations: { readOnlyHint: false, destructiveHint: false, openWorldHint: true },
      _meta: { 'openai/visibility': 'public' },
    },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Startvest-LLC/idealift-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server