Skip to main content
Glama

Valuein — SEC EDGAR Fundamentals & Smart-Money Data

List Signals

list_signals
Read-onlyIdempotent

Paginated newest-first listing of the caller's signals (id, condition, channel, status, trigger_count, evaluator health). Filter by status (active/paused/deleted/all). Use the returned signal id with delete_signal or test_signal. Tier: sp500+ (sample rejected).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of signals to return (1–100). Defaults to 20.
cursorNoOpaque pagination cursor from a previous response; omit for the first page.
statusNoFilter by lifecycle state; defaults to `active`. Use `all` to include paused and soft-deleted signals.active

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
_metaYesProvenance envelope — data lineage for every MCP response
signalsYes
next_cursorYes
total_countYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / properties / _meta / properties / fundamentals_as_of / description
      Previous value: -"ISO timestamp when the FINANCIAL STATEMENTS were last rebuilt. Use THIS — not `last_updated` — when telling a user how current the fundamentals are. The snapshot is republished on every weekday price refresh while the statements are carried forward unchanged, so `last_updated` can be far more recent than the numbers it sits next to."New value: +"ISO timestamp when the FINANCIAL STATEMENTS were last rebuilt in bulk. Use THIS — not `last_updated` — when telling a user how current the cross-sectional fundamentals are. The snapshot is republished on every weekday price refresh while the statements are carried forward unchanged, so `last_updated` can be far more recent than the numbers it sits next to. It is a floor for a single filer, not a ceiling: a filer with a live partition receives its filing, facts and ratios intraday (minutes after EDGAR dissemination), so an entity-scoped read may carry a filing newer than this; cross-sectional ranks (factor scores, earnings signals) refresh with the weekly bulk export."
  2. Changed2 schema fields changed
    • addedOutput schema / properties / signals / items / properties / channels
      Added value: +{
      +  "items": {
      +    "$ref": "#/properties/signals/items/properties/channel"
      +  },
      +  "maxItems": 4,
      +  "minItems": 1,
      +  "type": "array"
      +}
    • changedOutput schema / properties / signals / items / required
      Previous value: -[
      -  "id",
      -  "name",
      -  "condition",
      -  "channel",
      -  "status",
      -  "last_triggered_at",
      -  "trigger_count",
      -  "created_at",
      -  "updated_at"
      -]New value: +[
      +  "id",
      +  "name",
      +  "condition",
      +  "channel",
      +  "channels",
      +  "status",
      +  "last_triggered_at",
      +  "trigger_count",
      +  "created_at",
      +  "updated_at"
      +]
  3. Changed1 schema field changed
    • changedOutput schema / properties / signals / items / properties / condition / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "forms": {
      -        "description": "SEC form types to listen for, e.g. ['8-K', '10-K'].",
      -        "items": {
      -          "maxLength": 10,
      -          "minLength": 1,
      -          "type": "string"
      -        },
      -        "maxItems": 10,
      -        "minItems": 1,
      -        "type": "array"
      -      },
      -      "tickers": {
      -        "items": {
      -          "maxLength": 10,
      -          "minLength": 1,
      -          "type": "string"
      -        },
      -        "maxItems": 50,
      -        "minItems": 1,
      -        "type": "array"
      -      },
      -      "type": {
      -        "const": "filing_event",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "tickers",
      -      "forms"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "comparator": {
      -        "enum": [
      -          "lt",
      -          "gt",
      -          "lte",
      -          "gte"
      -        ],
      -        "type": "string"
      -      },
      -      "ratio": {
      -        "description": "Ratio name (e.g. 'interest_coverage' or 'net_debt_to_ebitda').",
      -        "maxLength": 60,
      -        "minLength": 1,
      -        "type": "string"
      -      },
      -      "threshold": {
      -        "type": "number"
      -      },
      -      "ticker": {
      -        "maxLength": 10,
      -        "minLength": 1,
      -        "type": "string"
      -      },
      -      "type": {
      -        "const": "ratio_threshold",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "ticker",
      -      "ratio",
      -      "comparator",
      -      "threshold"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "type": {
      -        "const": "watchlist_change",
      -        "type": "string"
      -      },
      -      "watchlist_name": {
      -        "maxLength": 80,
      -        "minLength": 1,
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "watchlist_name"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "direction": {
      -        "description": "Which direction of move to fire on. 'any' fires on either direction.",
      -        "enum": [
      -          "up",
      -          "down",
      -          "any"
      -        ],
      -        "type": "string"
      -      },
      -      "threshold_pct": {
      -        "description": "Minimum absolute close-to-close move, in percent (0.5–50), to fire.",
      -        "maximum": 50,
      -        "minimum": 0.5,
      -        "type": "number"
      -      },
      -      "ticker": {
      -        "maxLength": 10,
      -        "minLength": 1,
      -        "type": "string"
      -      },
      -      "type": {
      -        "const": "price_move",
      -        "type": "string"
      -      },
      -      "window_days": {
      -        "description": "Trading-day lookback window: 1 (daily), 5 (weekly), or 21 (monthly).",
      -        "enum": [
      -          1,
      -          5,
      -          21
      -        ],
      -        "type": "number"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "ticker",
      -      "direction",
      -      "threshold_pct",
      -      "window_days"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "change": {
      -        "description": "'new_period' fires only on a brand-new reporting period; 'restated' fires only when an already-reported period gets a new accepted_at vintage (an amendment); 'any' fires on either.",
      -        "enum": [
      -          "new_period",
      -          "restated",
      -          "any"
      -        ],
      -        "type": "string"
      -      },
      -      "concept": {
      -        "description": "Standard concept name, e.g. 'TotalRevenue', 'NetIncome', 'OperatingCashFlow'.",
      -        "maxLength": 80,
      -        "minLength": 1,
      -        "type": "string"
      -      },
      -      "ticker": {
      -        "maxLength": 10,
      -        "minLength": 1,
      -        "type": "string"
      -      },
      -      "type": {
      -        "const": "fundamental_change",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "ticker",
      -      "concept",
      -      "change"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "type": {
      -        "const": "watchlist_restatement",
      -        "type": "string"
      -      },
      -      "watchlist_name": {
      -        "description": "Fire when ANY company in this watchlist has a fact materially restated (>0.5% swing) by a later SEC filing — the Restatement Radar, scoped to a watchlist. Distinct from fundamental_change (one ticker + one concept).",
      -        "maxLength": 80,
      -        "minLength": 1,
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "watchlist_name"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "forms": {
      +        "description": "SEC form types to listen for, e.g. ['8-K', '10-K'] or ['SC 13D']. An EMPTY list means any filing. Amendments match their base form (a 10-K/A fires a 10-K signal) and EDGAR's two spellings of the schedules are equivalent ('SC 13D' === 'SCHEDULE 13D').",
      +        "items": {
      +          "maxLength": 20,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        "maxItems": 25,
      +        "type": "array"
      +      },
      +      "tickers": {
      +        "items": {
      +          "maxLength": 10,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        "maxItems": 50,
      +        "minItems": 1,
      +        "type": "array"
      +      },
      +      "type": {
      +        "const": "filing_event",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "tickers",
      +      "forms"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "comparator": {
      +        "enum": [
      +          "lt",
      +          "gt",
      +          "lte",
      +          "gte"
      +        ],
      +        "type": "string"
      +      },
      +      "ratio": {
      +        "description": "Ratio name (e.g. 'interest_coverage' or 'net_debt_to_ebitda').",
      +        "maxLength": 60,
      +        "minLength": 1,
      +        "type": "string"
      +      },
      +      "threshold": {
      +        "type": "number"
      +      },
      +      "ticker": {
      +        "maxLength": 10,
      +        "minLength": 1,
      +        "type": "string"
      +      },
      +      "type": {
      +        "const": "ratio_threshold",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "ticker",
      +      "ratio",
      +      "comparator",
      +      "threshold"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "forms": {
      +        "description": "SEC form types to fire on, e.g. ['10-K', '10-Q']. Omit to keep the historical default set (8-K, 10-K, 10-Q, 20-F, 6-K, SC 13D, SC 13G, S-1, S-3); an empty list means any filing.",
      +        "items": {
      +          "maxLength": 20,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        "maxItems": 25,
      +        "type": "array"
      +      },
      +      "type": {
      +        "const": "watchlist_change",
      +        "type": "string"
      +      },
      +      "watchlist_name": {
      +        "maxLength": 80,
      +        "minLength": 1,
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "watchlist_name"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "direction": {
      +        "description": "Which direction of move to fire on. 'any' fires on either direction.",
      +        "enum": [
      +          "up",
      +          "down",
      +          "any"
      +        ],
      +        "type": "string"
      +      },
      +      "threshold_pct": {
      +        "description": "Minimum absolute close-to-close move, in percent (0.5–50), to fire.",
      +        "maximum": 50,
      +        "minimum": 0.5,
      +        "type": "number"
      +      },
      +      "ticker": {
      +        "maxLength": 10,
      +        "minLength": 1,
      +        "type": "string"
      +      },
      +      "type": {
      +        "const": "price_move",
      +        "type": "string"
      +      },
      +      "window_days": {
      +        "description": "Trading-day lookback window: 1 (daily), 5 (weekly), or 21 (monthly).",
      +        "enum": [
      +          1,
      +          5,
      +          21
      +        ],
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "ticker",
      +      "direction",
      +      "threshold_pct",
      +      "window_days"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "change": {
      +        "description": "'new_period' fires only on a brand-new reporting period; 'restated' fires only when an already-reported period gets a new accepted_at vintage (an amendment); 'any' fires on either.",
      +        "enum": [
      +          "new_period",
      +          "restated",
      +          "any"
      +        ],
      +        "type": "string"
      +      },
      +      "concept": {
      +        "description": "Standard concept name, e.g. 'TotalRevenue', 'NetIncome', 'OperatingCashFlow'.",
      +        "maxLength": 80,
      +        "minLength": 1,
      +        "type": "string"
      +      },
      +      "ticker": {
      +        "maxLength": 10,
      +        "minLength": 1,
      +        "type": "string"
      +      },
      +      "type": {
      +        "const": "fundamental_change",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "ticker",
      +      "concept",
      +      "change"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "type": {
      +        "const": "watchlist_restatement",
      +        "type": "string"
      +      },
      +      "watchlist_name": {
      +        "description": "Fire when ANY company in this watchlist has a fact materially restated (>0.5% swing) by a later SEC filing — the Restatement Radar, scoped to a watchlist. Distinct from fundamental_change (one ticker + one concept).",
      +        "maxLength": 80,
      +        "minLength": 1,
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "watchlist_name"
      +    ],
      +    "type": "object"
      +  }
      +]
  4. Added

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare read-only, idempotent, and non-destructive. The description adds caller scoping, newest-first ordering, pagination behavior, and the access-tier restriction 'Tier: sp500+ (sample rejected)', which is behavioral beyond structured fields. No contradiction.

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?

Three compact sentences, each earning its place: listing behavior, filter values, downstream usage, tier rule. Front-loaded with core listing semantics before auxiliary notes, with zero waste.

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

Completeness5/5

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

Complete for a read-only list tool with an output schema: specifies pagination mechanism, ordering, default/available filters, caller scope, and downstream consumers. The tier restriction covers access behavior that would not otherwise be inferable.

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 descriptions for all three params (limit constraints, cursor semantics, status enum). The description repeats the status options but adds no new parameter meaning beyond the schema, and there are no undocumented parameters needing compensation.

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?

States a specific verb ('listing'), resource ('the caller's signals'), and behavioral specifics (paginated, newest-first) with named return fields. This distinguishes it from sibling list tools such as list_signal_inbox (inbox items) and get_earnings_signals (market signals). The scope 'caller's' makes ownership explicit.

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

Usage Guidelines4/5

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

Clearly describes the context: paginated listing with status filtering (active/paused/deleted/all) and a default of active. It also chains to sibling tools ('Use the returned signal id with delete_signal or test_signal'), but does not explicitly state when to prefer it over list_signal_inbox or other list tools, nor any exclusions.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.