Varrd
From idea to edge. Everyone has unique opinions and views of the world. Varrd makes it possible for everyone regardless of statistical, coding, or market knowledge to be able to find their unique edge. The issue with LLMs testing for edges in the market is redundant idea loops, overfit with confidence, and waste days exploring nonsense. Varrd is the infrastructure and guardrails to prevent those f
README
VARRD — Trading Edge Discovery
Institutional-grade quant research. Describe any trading idea in plain English, get statistically validated results with exact trade levels.
Any AI can backtest a strategy. VARRD guarantees it was done right — with K-tracking, Bonferroni correction, OOS lock, lookahead detection, and 4 other integrity guardrails enforced at infrastructure level.
<a href="https://glama.ai/mcp/servers/@augiemazza/varrd"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@augiemazza/varrd/badge" alt="Varrd MCP server" /> </a>
MCP Server — 7 Tools, 4 Prompts
Endpoint: https://app.varrd.com/mcp
Transport: Streamable HTTP (2025-03-26 spec)
Auth: Anonymous access with auto-provisioned credits. No API key required.
{
"mcpServers": {
"varrd": {
"transport": {
"type": "streamable-http",
"url": "https://app.varrd.com/mcp"
}
}
}
}
Works with Claude Desktop, Claude Code, Cursor, and any MCP-compatible client.
MCP Tools
| Tool | Cost | What It Does |
|---|---|---|
research |
~$0.25 | Multi-turn quant research with VARRD AI. Orchestrates 15 internal tools (data loaders, charting, event studies, backtests, optimization). Follow context.next_actions each turn. |
autonomous_research |
~$0.25 | AI discovers edges for you. Give it a topic, it generates hypotheses from its market knowledge base, runs the full pipeline, returns validated results. |
scan |
Free | Scan saved strategies against live market data. Returns exact dollar entry, stop-loss, and take-profit prices for every active signal. |
search |
Free | Find saved strategies by keyword or natural language. Returns matches ranked by relevance with win rate, Sharpe, edge status. |
get_hypothesis |
Free | Full details on any strategy: formula, entry/exit rules, win rate, Sharpe, profit factor, max drawdown, version history. |
check_balance |
Free | View credit balance and available credit packs. |
reset_session |
Free | Kill a broken research session and start fresh. |
MCP Prompts
| Prompt | Description |
|---|---|
test-trading-idea |
Test any trading idea with real market data and statistical validation |
whats-firing-now |
Scan your validated strategies and show what's actively firing |
discover-edges |
Let VARRD's autonomous AI discover trading edges on a topic |
find-strategies |
Search your strategy library by keyword or concept |
Quick Start — CLI
pip install varrd
# Research an idea (auto-follows the full workflow)
varrd research "When wheat drops 3 days in a row, is there a snap-back?"
# What's firing right now?
varrd scan --only-firing
# Search your saved strategies
varrd search "momentum on grains"
# Let VARRD discover edges autonomously
varrd discover "mean reversion on futures"
# Check credits
varrd balance
Quick Start — Python
from varrd import VARRD
v = VARRD() # auto-creates free account
# What's firing right now?
signals = v.scan(only_firing=True)
for s in signals.results:
print(f"{s.name}: {s.direction} {s.market} @ ${s.entry_price}")
# Research a trading idea
r = v.research("When RSI drops below 25 on ES, is there a bounce?")
r = v.research("test it", session_id=r.session_id)
print(r.context.has_edge) # True / False
print(r.context.edge_verdict) # "STRONG EDGE" / "NO EDGE" / etc.
# Get the trade setup
r = v.research("show me the trade setup", session_id=r.session_id)
Authentication & Passkey
First use auto-creates an account. You'll receive a passkey (VARRD-XXXXXXXXXXXXXXXX) saved to ~/.varrd/credentials.
VARRD account created.
Your passkey: VARRD-A3X9K2B7T4M8P1Q6
Saved to: ~/.varrd/credentials
Link to browser: Go to app.varrd.com, click "Link your AI agent", enter your passkey with an email and password. Your agent's strategies and credits merge into your account.
v = VARRD(api_key="your-key") # Python
varrd --key your-key scan # CLI
export VARRD_API_KEY=your-key # Environment variable
What You Get Back
Edge Found
STRONG EDGE: Statistically significant vs both zero and market baseline.
The pattern produces real returns that beat market drift.
Direction: LONG
Win Rate: 62%
Sharpe: 1.45
Trades: 247
K: 3 (tests run on this hypothesis)
Trade Setup:
Entry: $5,150.25
Stop Loss: $5,122.00
Take Profit: $5,192.50
Risk/Reward: 1.5:1
No Edge
NO EDGE: Neither test passed — no tradeable signal found.
This is a valid result. You found out for 25 cents
instead of $25,000 in live losses.
The Research Flow
Your idea (plain English)
|
v
Chart pattern — see the actual signals on real price data
|
v
You approve — sanity check before spending statistical power
|
v
Statistical test — event study or backtest with proper controls
| (K increments, fingerprints logged)
v
Edge verdict: STRONG EDGE — beats zero AND beats market
MARGINAL — beats zero, doesn't clearly beat market
NO EDGE — no signal found
|
v
Trade setup — exact dollar entry, stop-loss, take-profit
A typical session is 3-5 turns and costs ~$0.25.
8 Statistical Guardrails (Infrastructure-Enforced)
| Guardrail | What It Does |
|---|---|
| K-Tracking | Counts every test. 50 variations = higher significance bar. |
| Bonferroni Correction | Multiple comparison penalty, automatic. |
| OOS Lock | Out-of-sample is sacred. One shot. Locked forever. |
| Lookahead Detection | Catches formulas that accidentally use future data. |
| Tools Calculate, AI Interprets | AI never fabricates a number. Every stat from real data. |
| Chart > Approve > Test | Must see and approve pattern before testing. |
| Fingerprint Deduplication | Can't retest same formula/market/horizon twice. |
| No Post-OOS Optimization | Parameters locked after OOS validates. |
Data Coverage
| Asset Class | Markets | Timeframes |
|---|---|---|
| Futures (CME) | ES, NQ, CL, GC, SI, ZW, ZC, ZS, ZB, TY, HG, NG + 20 more | 1h and above |
| Stocks/ETFs | Any US equity | Daily |
| Crypto (Binance) | BTC, ETH, SOL + more | 10min and above |
15,000+ instruments total.
Pricing
- $2 free on signup — enough for 6-8 full research sessions
- Research: ~$0.20-0.30 per complete workflow
- ELROND council (8 expert investigators): ~$0.40-0.60
- Multi-market (3+ markets): up to ~$1
- Free tools: scan, search, get_hypothesis, check_balance, reset_session
- Credit packs: $5 / $20 / $50 via Stripe
- Credits never expire
Examples
See examples/:
quick_start.py— 5 lines to get startedscan_portfolio.py— Scan all strategies, show what's firingresearch_idea.py— Full multi-turn research workflowmulti_idea_loop.py— Test many ideas in a loopmcp_config.json— MCP config for Claude Desktop
For AI Agents
See AGENTS.md for a structured guide with complete tool reference, response formats, and integration patterns.
Links
- Web app: app.varrd.com
- Website: varrd.com
- MCP endpoint:
https://app.varrd.com/mcp - MCP Registry: registry.modelcontextprotocol.io
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。