Skip to main content
Glama

create_idea

Add new product ideas to your workspace with title, details, and source tracking while automatically checking plan limits.

Instructions

Create a new idea in the workspace. Checks plan limits before creating.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesTitle of the idea
summaryNoDetailed description of the idea
sourceNoSource of the ideamcp
urlNoURL reference for the idea
authorNameNoName of the person who submitted the idea
authorIdNoExternal ID of the author

Implementation Reference

  • The `create_idea` tool is registered in `src/mcp/tools/proxyTools.ts`. It takes a title, summary, source, url, authorName, and authorId. It is intended to be accessed via an MCP proxy.
    {
      name: 'create_idea',
      description: 'Create a new idea in the workspace. Checks plan limits before creating.',
      inputSchema: {
        type: 'object' as const,
        properties: {
          title: {
            type: 'string',
            description: 'Title of the idea',
          },
          summary: {
            type: 'string',
            description: 'Detailed description of the idea',
          },
          source: {
            type: 'string',
            enum: ['discord', 'slack', 'teams', 'zapier', 'api', 'chrome', 'vscode', 'extension', 'sentry', 'fireflies', 'email', 'outlook', 'meeting', 'mcp'],
            description: 'Source of the idea',
            default: 'mcp',
          },
          url: {
            type: 'string',
            description: 'URL reference for the idea',
          },
          authorName: {
            type: 'string',
            description: 'Name of the person who submitted the idea',
          },
          authorId: {
            type: 'string',
            description: 'External ID of the author',
          },
        },
        required: ['title'],
      },
      annotations: { readOnlyHint: false, destructiveHint: false, openWorldHint: true },
      _meta: { 'openai/visibility': 'public' },
    },
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Adds valuable context beyond annotations: specifically mentions plan limit validation behavior that could cause invocation failure. Annotations already indicate non-destructive write (readOnlyHint:false, destructiveHint:false), so description's contribution of the plan limits check is meaningful additional context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two efficient sentences with zero waste. Front-loaded with action verb. Second sentence earns its place by conveying critical operational behavior (plan limit validation) that affects invocation success.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Adequate for a creation tool with 6 parameters. Plan limits mention satisfies critical behavioral disclosure. No output schema exists, so absence of return value description is acceptable. Could strengthen by describing failure behavior when limits exceeded, but sufficient for complexity level.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with all 6 parameters well-documented. Description mentions no specific parameters, but with complete schema coverage, baseline 3 is appropriate—description doesn't need to compensate for documentation gaps or add redundant parameter details.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Specific verb 'Create' with clear resource 'idea' and scope 'in the workspace'. Effectively distinguishes from siblings: contrasts with get_idea/list_ideas/query_ideas (read operations), update_idea (modification), and create_ticket/create_relationship (different resource types).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Mentions 'Checks plan limits before creating' which implies a usage constraint, but lacks explicit when-to-use guidance (e.g., when to prefer create_idea vs normalize_idea) or alternative recommendations. Usage is implied rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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