MCP Tools

    Five read-only tools, runnable right here
    Simulated backtest — not real performance

    These are the tools an AI assistant sees when it connects to strategya.pro. Every tool is read-only and returns JSON built from the same published catalog as the Catalog and Summary pages. The “Run” buttons below execute the tool on this server and show the exact response an assistant would receive.

    list_productsread-only

    List catalog products

    Every signal product in the catalog: slug, name, kind, timeframe, sleeve, assets, tier, live status and links.

    • What products are available?
    • Which products are preliminary?
    Raw MCP call
    curl -s https://strategya.pro/mcp \
      -H 'content-type: application/json' \
      -H 'authorization: Bearer <token>' \
      -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_products","arguments":{}}}'
    get_signalread-only

    Get live signal for a product

    Today's signal for one product: action, positions, cash asset, reference price, status and validity window.

    • What should I be holding today in BTC 1D?
    Raw MCP call
    curl -s https://strategya.pro/mcp \
      -H 'content-type: application/json' \
      -H 'authorization: Bearer <token>' \
      -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_signal","arguments":{"slug":"btc-1d"}}}'
    get_catalogread-only

    Get full catalog

    The whole payload: products with summary and kpis_by_window, every live signal, the common window and the disclaimer.

    • Give me everything in one call
    Raw MCP call
    curl -s https://strategya.pro/mcp \
      -H 'content-type: application/json' \
      -H 'authorization: Bearer <token>' \
      -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_catalog","arguments":{}}}'
    get_summaryread-only

    Get comparable performance summary

    KPIs of every product recomputed on one common window and ranked by MAR — the same data as the Summary page.

    • Which product performed best?
    • Rank the products
    • How many trades has X made?
    Raw MCP call
    curl -s https://strategya.pro/mcp \
      -H 'content-type: application/json' \
      -H 'authorization: Bearer <token>' \
      -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_summary","arguments":{}}}'
    get_product_kpisread-only

    Get KPIs for one product by window

    KPIs of one product for a time window: 6m, 1y, 2y, since_2023, since_2022, full, or common. Omit the window to get them all.

    • How did SOL 1D do in the last year?
    • BTC 1D since 2022
    Raw MCP call
    curl -s https://strategya.pro/mcp \
      -H 'content-type: application/json' \
      -H 'authorization: Bearer <token>' \
      -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_product_kpis","arguments":{"slug":"btc-1d","window":"1y"}}}'