Skip to main content

MCP server for trade research and strategy backtesting. Deterministic quant tools for AI agents — stock screening, backtesting, and factor analysis.

Project description

QuantContext

QuantContext is an MCP server that turns plain-English strategy descriptions into executable quant research: screen stocks by any criteria, backtest over historical data, and run factor analysis to see where the returns come from. Every number is computed from real market data, not generated by an LLM. Results are fully reproducible.

Works with Claude, Codex, OpenCode, or any other MCP-compatible coding agent.

Install

pip install quantcontext-mcp

Claude Code:

claude mcp add quantcontext -- quantcontext

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "quantcontext": {
      "command": "quantcontext"
    }
  }
}

No API keys. No configuration.

Tools

Three tools that compose into a full research workflow:

screen_stocks -> backtest_strategy -> factor_analysis
Tool What it does
screen_stocks Filter S&P 500, Nasdaq 100, or Russell 2000 by fundamentals, momentum, quality, technical signals, or a multi-factor blend. Returns ranked candidates.
backtest_strategy Test a strategy over history with a rebalance-loop engine. Returns CAGR, Sharpe, max drawdown, equity curve, and trade log.
factor_analysis Decompose strategy returns into Fama-French factors (market, size, value, momentum). Returns alpha with t-statistic, factor loadings, and R-squared.

Sample Prompts

Stock screening:

Screen S&P 500 for value stocks: PE under 15, ROE above 12%
Find the top 20% momentum stocks in the Nasdaq 100 over the last 200 days
Rank S&P 500 stocks by a blend of value, momentum, and quality, equal weight each factor
Find S&P 500 stocks with RSI under 40 and price above the 200-day moving average

Backtesting:

Backtest a top-20% momentum strategy on Nasdaq 100, monthly rebalance, last 2 years
How would a value screen (PE under 15, ROE above 12%) have performed on S&P 500 over the last 3 years?
Test a momentum strategy with a 15% stop loss and 20% max portfolio drawdown circuit breaker

Full research workflow:

Screen S&P 500 for cheap, high-quality stocks. Backtest monthly over 3 years,
then run factor analysis. Is the return real alpha or just factor exposure?

Screen Types

Screen Description Key parameters
fundamental_screen Filter by PE, ROE, leverage, revenue growth pe_lt, roe_gt, debt_equity_lt, revenue_growth_gt
quality_screen Profitability and balance sheet health roe_gt, debt_equity_lt, profit_margin_gt
momentum_screen Rank by N-day price momentum lookback_days, top_pct
value_screen Cheapest stocks by valuation pe_lt, top_n
factor_model Multi-factor composite score weights (value/momentum/quality/volatility), top_n
technical_signal RSI and SMA crossover signals rsi_period, sma_short, sma_long
mean_reversion Stocks below z-score threshold lookback_days, z_threshold

Use from Python

The tools are also importable directly — no agent required. Useful if you have an existing script and want to plug in backtesting or factor analysis.

from quantcontext.server import screen_stocks, backtest_strategy, factor_analysis
import asyncio, json

# Screen
result = json.loads(asyncio.run(screen_stocks(
    universe="sp500",
    screen_type="fundamental_screen",
    config={"pe_lt": 15, "roe_gt": 12},
)))

# Backtest
bt = json.loads(asyncio.run(backtest_strategy(
    stages=[{"order": 1, "type": "screen", "skill": "fundamental_screen", "config": {"pe_lt": 15, "roe_gt": 12}}],
    universe="sp500",
    rebalance="monthly",
    start_date="2022-01-01",
)))
print(bt["metrics"])

# Factor analysis — pipe the equity curve straight in
fa = json.loads(asyncio.run(factor_analysis(
    equity_curve=bt["full_equity_curve"]
)))
print(fa["alpha_annualized"], fa["alpha_tstat"])

Strategies are expressed using the built-in screen types from the table above. All functions are async and return JSON strings.

Data

All public data, no API keys required.

Data Source Cache
Daily OHLCV prices Yahoo Finance (yfinance) ~/.cache/quantcontext/prices.parquet
Fundamentals (PE, ROE, margins, etc.) Yahoo Finance ~/.cache/quantcontext/financials/, 24h TTL
Fama-French factors (Mkt-RF, SMB, HML, Mom) Kenneth French Data Library ~/.cache/quantcontext/ff_factors.parquet
Universe lists (S&P 500, Nasdaq 100) Wikipedia ~/.cache/quantcontext/sp500_tickers.json

The first tool call downloads and caches data (10-30 seconds). All subsequent calls use the local cache: screening under 1s, backtesting 3-8s.

To skip the cold start, run once after install:

quantcontext-warmup --url https://quantcontext.ai/api/data

Links

  • Docs — full reference, examples, methodology
  • PyPI

License

MIT

Project details


Download files

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

Source Distribution

quantcontext_mcp-0.1.1.tar.gz (748.0 kB view details)

Uploaded Source

Built Distribution

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

quantcontext_mcp-0.1.1-py3-none-any.whl (32.0 kB view details)

Uploaded Python 3

File details

Details for the file quantcontext_mcp-0.1.1.tar.gz.

File metadata

  • Download URL: quantcontext_mcp-0.1.1.tar.gz
  • Upload date:
  • Size: 748.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for quantcontext_mcp-0.1.1.tar.gz
Algorithm Hash digest
SHA256 e46c7ac46730d64f535391d802be0a2bf35ddc643b2f13fc37c5749bb8239ce9
MD5 4431ae39cd7252f21b0823c6e3dce4b9
BLAKE2b-256 834381157f0de477ac98dc85a0ef8b02db48a21a56ee5b203aab605c9dbdc57e

See more details on using hashes here.

File details

Details for the file quantcontext_mcp-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for quantcontext_mcp-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3faed0a9ece67b38cdefae30195720eaff41f19d80ce2ba5ee5bf8ab92f70199
MD5 11a3deb53af249240bd32b4b32341397
BLAKE2b-256 0060d32850c626827008ab1e3b80489d3788b8e6063a73f4022d142bf2b1554d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page