Skip to main content
Glama

list_signals

Retrieve and filter external feedback signals from sources like Twitter, Reddit, and support tickets to analyze product feedback for idea management.

Instructions

List signals (external feedback from Twitter, Reddit, support tickets, etc.) with optional filters.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ideaIdNoFilter signals linked to a specific idea
sourceNoFilter by signal source (twitter, reddit, helpscout, etc.)
sentimentNoFilter by sentiment
categoryNoFilter by category
limitNoNumber of signals to return (max 100)
offsetNoOffset for pagination

Implementation Reference

  • Definition of the 'list_signals' tool in proxyTools.ts. Note that it is defined but not actually wired into the main 'mcpHandler' in src/mcp/handler.ts.
    {
      name: 'list_signals',
      description: 'List signals (external feedback from Twitter, Reddit, support tickets, etc.) with optional filters.',
      inputSchema: {
        type: 'object' as const,
        properties: {
          ideaId: { type: 'string', description: 'Filter signals linked to a specific idea' },
          source: { type: 'string', description: 'Filter by signal source (twitter, reddit, helpscout, etc.)' },
          sentiment: {
            type: 'string',
            enum: ['positive', 'negative', 'neutral', 'mixed'],
            description: 'Filter by sentiment',
          },
          category: {
            type: 'string',
            enum: ['feature_request', 'bug_report', 'praise', 'complaint', 'question', 'mention'],
            description: 'Filter by category',
          },
          limit: { type: 'number', description: 'Number of signals to return (max 100)', default: 20 },
          offset: { type: 'number', description: 'Offset for pagination', default: 0 },

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