Skip to main content

QuantDinger MCP Server

The MCP server is a thin, tenant-scoped wrapper over /api/agent/v1. It exposes research universes and factors, market data, chart-indicator authoring, Strategy API V2 deployment and backtesting, broker/execution observations, notification automation, bounded jobs, and safety-gated trading.

Install and run

pip install "quantdinger-mcp==0.6.0"
export QUANTDINGER_BASE_URL=http://localhost:8888
export QUANTDINGER_AGENT_TOKEN=qd_agent_xxx
quantdinger-mcp

pipx install quantdinger-mcp and uvx quantdinger-mcp are also supported. Use pip install -e ./mcp_server only when developing from a repository checkout.

The default transport is stdio. Set QUANTDINGER_MCP_TRANSPORT to sse or streamable-http for a network transport. Optional limits include QUANTDINGER_TIMEOUT_S, QUANTDINGER_MCP_JOB_STREAM_MAX_EVENTS, QUANTDINGER_MCP_JOB_STREAM_MAX_SECONDS, and QUANTDINGER_MCP_JOB_POLL_MAX_SECONDS.

Network transports bound to a non-loopback host require a separate inbound bearer token. This token authenticates MCP clients and must not be the Agent Gateway token:

export QUANTDINGER_MCP_TRANSPORT=streamable-http
export QUANTDINGER_MCP_HOST=0.0.0.0
export QUANTDINGER_MCP_PORT=7800
export QUANTDINGER_MCP_PUBLIC_URL=https://mcp.example.com
export QUANTDINGER_MCP_AUTH_TOKEN=replace-with-a-random-32-plus-character-secret
quantdinger-mcp

Clients must send Authorization: Bearer <QUANTDINGER_MCP_AUTH_TOKEN> to /mcp or /sse. Authenticated non-loopback listeners require an HTTPS QUANTDINGER_MCP_PUBLIC_URL. QUANTDINGER_MCP_ALLOW_HTTP=true is only for a trusted private proxy that terminates TLS. For an unauthenticated private ingress that already authenticates every request, QUANTDINGER_MCP_ALLOW_INSECURE_HTTP=true remains a separate escape hatch; never use either setting on a directly reachable public listener.

Docker builds use the official PyPI index by default. In regions where it is slow, override it without editing the image definition: docker build --build-arg PIP_INDEX_URL=https://your-mirror.example/simple ..

Never place an agent token in prompts, logs, screenshots, source control, or MCP configuration that will be shared. Responses redact credential fields, and clients must not attempt to recover them.

Tool surface

Tool group Scope Purpose
whoami, check_health R/public Identity, allowlists, and liveness
list_markets, search_symbols, get_klines, get_price R Market discovery and data
Universe and factor tools R Point-in-time research inputs
list_watchlist, add_watchlist, remove_watchlist R/W Watchlist workspace
Indicator authoring, validation, save, link, and read tools R/W Chart-only indicators
list_strategy_templates, compile_strategy_code R Strategy API V2 templates and manifest compilation
list_strategy_sources, get_strategy_source, save_strategy_source R/W Private Strategy API V2 source library
list_strategy_source_versions, restore_strategy_source_version R/W Source history and explicitly confirmed restore
create_strategy, update_strategy, list_strategies, get_strategy R/W Strategy API V2 deployments
submit_backtest B Strategy API V2 backtest job
list_jobs, get_job, wait_for_job, stream_job_until_done, cancel_job R/B Bounded jobs and confirmed cancellation
runtime_overview, stop_strategy R/T Runtime inspection and confirmed stop
Broker account, strategy position/trade, and quick-trade observation tools R Secret-free execution observations
Signal-alert tools N Notification task lifecycle and confirmed delivery evaluation
place_quick_order T Confirmed order with token notional caps
list_portfolio_positions, list_paper_orders R Portfolio and paper-order reads
emergency_stop_trading, cancel_open_paper_orders T Emergency cancellation and T-token revocation

Every mutating W/B/N/T tool requires a caller-generated idempotency_key; retries of the same request must reuse it. stop_strategy requires confirm_stop=true. place_quick_order requires confirm_order=true; a live-capable token also requires confirm_live_trading=true. Optional tp_price and sl_price protection are forwarded to the shared Quick Trade execution path. Server-side trading flags, allowlists, and per-order/per-day notional caps still apply.

Strategy API V2 workflow

Executable strategy code must define initialize(context) and declare its universe and subscriptions. It must provide handle_data, on_rebalance, or a scheduled callback. The manifest owns instruments, markets, frequencies, factor dependencies, warmup, and leverage policy.

Compile and save a source before creating a stopped deployment:

compile_strategy_code(code="...Strategy API V2 Python...")
save_strategy_source(name="btc-momentum", code="...Strategy API V2 Python...")

Use the returned source id:

create_strategy(
  name="btc-momentum",
  source_id=12,
  initial_capital=10000,
  execution_mode="signal",
  params={"lookback": 40},
  idempotency_key="deploy-btc-momentum-v1"
)

Run a backtest directly from V2 code:

submit_backtest(
  code="...Strategy API V2 Python...",
  start_date="2025-01-01",
  end_date="2025-12-31",
  initial_capital=10000,
  params={"lookback": 40},
  idempotency_key="btc-momentum-2025"
)

Market, symbol, and timeframe are not backtest parameters. They come from the compiled strategy manifest. Use wait_for_job or stream_job_until_done to obtain the result.

Indicators are chart-only. Validate and save them through the indicator tools, then convert the idea into Strategy API V2 code before using submit_backtest or create_strategy.

Restoring a source snapshot requires confirm_restore=true. The emergency stop requires confirmation, attempts to cancel agent-originated live orders, cancels paper orders, revokes every active tenant T token, and reports exchange cancellations needing human follow-up.

The optional Docker network service is enabled explicitly:

QUANTDINGER_AGENT_TOKEN=qd_agent_xxx \
QUANTDINGER_MCP_AUTH_TOKEN="$(openssl rand -hex 32)" \
docker compose --profile mcp up -d --build mcp

Development

pip install -e './mcp_server[dev]'
pytest mcp_server/tests

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

quantdinger_mcp-0.6.2.tar.gz (27.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

quantdinger_mcp-0.6.2-py3-none-any.whl (20.9 kB view details)

Uploaded Python 3

File details

Details for the file quantdinger_mcp-0.6.2.tar.gz.

File metadata

  • Download URL: quantdinger_mcp-0.6.2.tar.gz
  • Upload date:
  • Size: 27.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.12

File hashes

Hashes for quantdinger_mcp-0.6.2.tar.gz
Algorithm Hash digest
SHA256 c54a08c1e0c572de5d1de634d454043ae3799c7609fe03fee35eb6aa7f07eaf7
MD5 b4625b01fe66e9fd6a891477e4659bdf
BLAKE2b-256 8a12de8f65c5344d2652b1fb53f026f51a2e5fe673d10b11ef6e7c8ec6c56181

See more details on using hashes here.

File details

Details for the file quantdinger_mcp-0.6.2-py3-none-any.whl.

File metadata

File hashes

Hashes for quantdinger_mcp-0.6.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a943517d6fadb504479bc1f601e345abb10312e53c31144c2cf871bbdde9fd64
MD5 0402ed1570b34dfaa847776b844d2edb
BLAKE2b-256 96350f4a9875a013f46d1fe9c70df68254fb9090f66550eba1ac35b5f5667b24

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.6.2 This release

2 files

0.6.1

2 files

0.6.0

2 files

0.5.0

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page