SYSTEM R AI

Finance Tools

Finance tool areas for agents, Python workflows, notebooks, REST integrations, and backend services.

System R AI exposes finance tools through REST, MCP, and Python workflows. Current API Toolkit capabilities are described in the docs and machine readable agent metadata.

Interfaces

  • REST: POST /v1/tools/call with a tool_name and structured arguments.
  • SDK: Python workflows can use named methods for common operations or generic tool calls.
  • MCP: Compatible AI clients can discover and call tools through the MCP server.

Tool areas

AreaWhat it supports
Risk and sizingPosition sizing, trade risk checks, pre-trade gates, options or futures sizing where inputs are provided.
Performance diagnosticsR-multiples, drawdown, win/loss profile, recovery, distribution, expected value, and related review metrics.
Market structure analysisRegime, patterns, trend, indicators, price structure, correlations, liquidity, volatility, and scanner logic from supplied or supported data.
Scenario planningWhat-if checks, invalidation framing, sizing boundaries, and plan structure.
Journal and memoryStructured trade records, outcome logs, journal metrics, stored context, and memory search.
Data and research pathsQuotes, OHLCV, news, fundamentals, scans, or research enrichment where supported by the current provider path or supplied by the caller.
Billing and usagePricing, balance, transactions, usage, metering, and key-level limits where enabled.

Current capabilities

Developers should use the documented MCP, SDK, REST, and OpenAPI surfaces that are live and valid. Do not rely on undocumented discovery URLs in production.

Call a tool

curl -X POST https://agents.systemr.ai/v1/tools/call \
  -H "X-API-Key: sr_agent_..." \
  -H "Content-Type: application/json" \
  -d '{
    "tool_name": "calculate_position_size",
    "arguments": {
      "equity": "100000",
      "entry_price": "185.50",
      "stop_price": "180.00",
      "direction": "long"
    }
  }'

Trust boundary

System R AI is software for decision support. It is not a financial advisor, broker, or signal service, and it does not guarantee profits. Users remain responsible for trading and investing decisions.

System R AI
Python SDKpip install systemr
MCP Serveragents.systemr.ai/mcp/sse
OpenAPI Specagents.systemr.ai/v1/openapi.json
Machine Docsagents.systemr.ai/llms.txt
GitHubSystem-R-AI
X@Systemrai
YouTube@systemr_ai
Emailhello@systemr.ai
Phone628 333 6693
Address7901 4TH ST N, STE 28529, ST PETERSBURG, FL 33702
TermsTerms of Service
PrivacyPrivacy Policy
SecuritySecurity Policy
© 2026 System R AI. Decision-support software. Not financial advice.

On this page