Skip to main content
Glama
longbridge

longbridge

Official

Screener Recommend Strategies

screener_recommend_strategies
Read-onlyIdempotent

Lists platform-preset screener strategies by market (US, HK, CN, SG) to identify investment opportunities and run market scans.

Instructions

List platform-preset screener strategies. market: US|HK|CN|SG (default: US). Pass id to screener_search strategy_id to run, or screener_strategy to inspect filter conditions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
marketNoMarket filter: "US" | "HK" | "CN" | "SG" (default: "US")

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
strategysNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changedv0.8.7
    • addedOutput schema / $defs / ScreenerStrategyItem / properties / description
      Added value: +{
      +  "type": [
      +    "string",
      +    "null"
      +  ]
      +}
  2. Changed1 schema field changedv0.7.1
    • removedInput schema / title
      Removed value: -"ScreenerRecommendStrategiesParam"
  3. Changed11 schema fields changedv0.6.0
    • removedOutput schema / $defs / ScreenerStrategyItem / description
      Removed value: -"A single screener strategy entry. Subset of upstream fields; the change\nfigure is stringified by the transform pipeline."
    • removedOutput schema / $defs / ScreenerStrategyItem / properties / description
      Removed value: -{
      -  "description": "Strategy description.",
      -  "type": [
      -    "string",
      -    "null"
      -  ]
      -}
    • removedOutput schema / $defs / ScreenerStrategyItem / properties / id / description
      Removed value: -"Strategy ID. Pass to `screener_search` `strategy_id` to run, or to\n`screener_strategy` to inspect the filter conditions."
    • removedOutput schema / $defs / ScreenerStrategyItem / properties / market / description
      Removed value: -"Market the strategy targets, e.g. \"US\" / \"HK\" / \"CN\" / \"SG\"."
    • removedOutput schema / $defs / ScreenerStrategyItem / properties / name / description
      Removed value: -"Strategy display name."
    • removedOutput schema / $defs / ScreenerStrategyItem / properties / risk / description
      Removed value: -"Risk classification label."
    • removedOutput schema / $defs / ScreenerStrategyItem / properties / three_months_chg / description
      Removed value: -"Trailing three-month change (stringified decimal / percentage)."
    • removedOutput schema / $schema
      Removed value: -"https://json-schema.org/draft/2020-12/schema"
    • removedOutput schema / description
      Removed value: -"Returned by `screener_recommend_strategies` and `screener_user_strategies`.\nThe documented portion is `strategys[]`."
    • removedOutput schema / properties / strategys / description
      Removed value: -"Screener strategies (note the upstream `strategys` spelling)."
    • removedOutput schema / title
      Removed value: -"ScreenerStrategiesResponse"
  4. Changed1 schema field changedv0.5.6
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$defs": {
      +    "ScreenerStrategyItem": {
      +      "description": "A single screener strategy entry. Subset of upstream fields; the change\nfigure is stringified by the transform pipeline.",
      +      "properties": {
      +        "description": {
      +          "description": "Strategy description.",
      +          "type": [
      +            "string",
      +            "null"
      +          ]
      +        },
      +        "id": {
      +          "description": "Strategy ID. Pass to `screener_search` `strategy_id` to run, or to\n`screener_strategy` to inspect the filter conditions.",
      +          "type": [
      +            "string",
      +            "null"
      +          ]
      +        },
      +        "market": {
      +          "description": "Market the strategy targets, e.g. \"US\" / \"HK\" / \"CN\" / \"SG\".",
      +          "type": [
      +            "string",
      +            "null"
      +          ]
      +        },
      +        "name": {
      +          "description": "Strategy display name.",
      +          "type": [
      +            "string",
      +            "null"
      +          ]
      +        },
      +        "risk": {
      +          "description": "Risk classification label.",
      +          "type": [
      +            "string",
      +            "null"
      +          ]
      +        },
      +        "three_months_chg": {
      +          "description": "Trailing three-month change (stringified decimal / percentage).",
      +          "type": [
      +            "string",
      +            "null"
      +          ]
      +        }
      +      },
      +      "type": "object"
      +    }
      +  },
      +  "$schema": "https://json-schema.org/draft/2020-12/schema",
      +  "description": "Returned by `screener_recommend_strategies` and `screener_user_strategies`.\nThe documented portion is `strategys[]`.",
      +  "properties": {
      +    "strategys": {
      +      "description": "Screener strategies (note the upstream `strategys` spelling).",
      +      "items": {
      +        "$ref": "#/$defs/ScreenerStrategyItem"
      +      },
      +      "type": [
      +        "array",
      +        "null"
      +      ]
      +    }
      +  },
      +  "title": "ScreenerStrategiesResponse",
      +  "type": "object"
      +}
  5. Addedv0.4.5

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false, so the agent knows it is a safe read. The description adds the accepted market values and the chaining contract, but since an output schema exists, the lack of return-shape detail is acceptable. Still, no extra behavioral traits (e.g., result limits) are disclosed.

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 terse sentences with zero filler: one for the core purpose, one for the parameter format with default, and one for the next step. Every sentence earns its place and the structure front-loads the most important information.

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?

For a single-parameter, read-only listing tool with an output schema, the description covers the purpose, the market parameter, and the crucial follow-up chaining to screener_search and screener_strategy that a consumer would need to build a full workflow.

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?

With 100% schema description coverage for the single optional market parameter, the baseline is 3. The description restates the same market format and default as the schema, so it adds little beyond what structured data already provides at the parameter level.

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?

"List platform-preset screener strategies" uses a specific verb (list) with a well-scoped resource (platform-preset strategies). The qualifier "platform-preset" explicitly differentiates this from the sibling screener_user_strategies, and the chaining note distances it from screener_search and screener_strategy.

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?

Useful downstream context is given (pass id to screener_search strategy_id to run, or screener_strategy to inspect filters), which implies what to do with the output. However, it never explicitly states when to use this vs. alternatives such as screener_user_strategies — the contrast is only implied by the word "platform-preset."

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/longbridge/longbridge-mcp'

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