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' },
    },

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