mcpbeat Sign in

dMoERA Creator MCP Server

by cachecarti Your server? Claim it
answering

dMoERA Creator is answering right now. Last checked moments ago. It exposes 16 tools. Last commit 26 Aug 2026.

Build, backtest, and deploy crypto trading strategies via MCP with 7-stage validation.

Uptime history 6 days of history
6 days agonow
100.0%
Uptime 24h
92 of 92 checks
16
Tools
read from the server
942 ms
Response time
average over 24h
8
Stars
last commit 26 Aug 2026

Nothing serious here today

Today is the operative word: we check dMoERA Creator every 15 minutes and re-read its code on every release. Watch it and you find out the day that stops being true.

Three servers free · no card

Connect this server

Endpoint below is the one we actually reach during checks — not the one copied from a README. Last verified 0 min ago.

run in your terminal
claude mcp add dmoera-creator --transport http https://dmoera.xyz/mcp
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "dmoera-creator": {
      "url": "https://dmoera.xyz/mcp"
    }
  }
}
~/.codex/config.toml
[mcp_servers.dmoera-creator]
url = "https://dmoera.xyz/mcp"
.cursor/mcp.json
{
  "mcpServers": {
    "dmoera-creator": {
      "url": "https://dmoera.xyz/mcp"
    }
  }
}
.vscode/mcp.json
{
  "mcpServers": {
    "dmoera-creator": {
      "url": "https://dmoera.xyz/mcp"
    }
  }
}

Available tools 16

Read directly from the server with tools/list, grouped by what they act on. If a tool disappears, we record the date.

open
get_open_source_leaderboard
Browse the open-source strategy leaderboard with FIFA-style ratings. Each strategy gets an overall rating (0-99) with sub-ratings for edge, drawdown control, regime fit, risk, turnover, and robustness. Strategies are tagged with positions (GK, DEF, MID, FWD) and tier (Bronze, Silver, Gold, Elite) like FIFA Ultimate Team cards. Use this to discover strategies worth forking. Then call fork_strategy with the strategy_id to get the code. Args: sort_by: Sort key — overall | edge | dd_ctrl | regime | risk | turnover | robust | forks | likes | return | sharpe | trades | newest domain: Filter by domain (e.g. "eth_usdc"). Empty = all domains. limit: Max entries to return. Returns JSON with: success, count, and bot entries with ratings, validation metrics, creator_username, fork_count, like_count.
open_source_strategy
Convert a rejected strategy to open-source status. The strategy must have passed stages 1-2 (static check + in-sample with >=5 trades). Its code becomes public on the open-source leaderboard where other creators can fork it. Open-source bots cannot enter tournaments or receive fund allocations — they're for community learning. Use this when a strategy fails full validation but still has educational value or interesting logic worth sharing. Args: strategy_id: The ID of the strategy to open-source (from submit_strategy or list_strategies). api_key: Your dMoERA Personal Access Token. Required for this tool. Get one at https://dmoera.xyz → Settings → API Keys. (If running locally with DMOERA_API_KEY env var set, this can be omitted.) Returns JSON with: success, strategy_id, status, bot_id, or error.
bot
get_bot_profile
Get detailed profile and performance stats for a specific bot. Args: bot_id: The bot identifier (e.g. "Eth_Full_Ensemble"). Returns JSON with: bot_id, domain, strategy type, full performance metrics (Sharpe, Sortino, Calmar, profit factor, win rate, return, max drawdown, avg trade), and proven tier.
bots
list_bots
List trading bots ranked by performance. Args: domain: Filter by domain key (e.g. "eth_usdc", "btc_usdc", "sol_usdc"). If omitted, returns top bots across all domains. limit: Maximum number of bots to return (default 20, max 100). Returns JSON array of bots with: bot_id, domain, strategy_name, sharpe, win_rate, total_trades, return_bps, and validation_score.
current
get_current_prices
Get current live prices for all tracked symbols. Returns JSON with symbol -> {price, change_24h_pct, volume_24h, source} for ETHUSDT, BTCUSDT, SOLUSDT.
delist
delist_strategy
Delist a strategy from the platform. Retired bots (tombstone=False) stay visible with their performance history — bad performance can't be hidden. Tombstoned bots (tombstone=True) are permanently removed and cannot be re-submitted. Args: strategy_id: The ID of the strategy to delist. tombstone: If True, permanently remove (cannot re-submit). If False, just retire (can re-submit with improvements). api_key: Your dMoERA Personal Access Token. Required for this tool. Get one at https://dmoera.xyz → Settings → API Keys. (If running locally with DMOERA_API_KEY env var set, this can be omitted.) Returns JSON with: success, strategy_id, status.
domains
list_domains
List all available trading domains on dMoERA. Domains define what asset pair a strategy trades, what time horizon it uses (scalp=5m, swing=1h), and what data is available. Strategies must declare which domain they belong to. Returns a JSON array of domain objects with: key, name, type, base_asset, quote_asset, grading_seconds, and feed_symbols.
feature
get_feature_catalog
List all data feeds available to strategies via ctx.features. Features are external data that strategies can read during on_bar(). Each feature has a status: "live" (available now) or "planned" (roadmap). Returns JSON array of features with: key, label, description, unit, example, cadence, source, and status.
fork
fork_strategy
Get the source code from an open-source strategy for forking. Returns the full code + parent info. Use this to study and remix open-source strategies from the open-source leaderboard. The actual submission of the forked code goes through submit_strategy with parent_strategy_id set (which the backend uses to exclude the parent from similarity checks). Args: strategy_id: The ID of the open-source strategy to fork. api_key: Your dMoERA Personal Access Token. Required for this tool. Get one at https://dmoera.xyz → Settings → API Keys. (If running locally with DMOERA_API_KEY env var set, this can be omitted.) Returns JSON with: success, parent_strategy_id, parent_bot_id, parent_name, parent_domain, code.
market
get_market_regime
Get current market regime classification. Returns the aggregate regime (e.g. "bull_calm", "bear_volatile"), per-symbol regimes, crisis score, and the derivatives data driving the classification (funding rates, open interest, long/short ratios). Regime determines which trade directions are allowed: - bull_* -> longs only - bear_* -> shorts only - neutral_* -> both longs and shorts - crisis/meltdown -> no new positions
marketplace
get_marketplace_bots
List bots published to the marketplace. Args: domain: Filter by domain (e.g. "eth_usdc"). Omit for all domains. sort: Sort order — "rating", "return", "subscribers", or "newest". limit: Max results (default 20, max 100). Returns JSON array of marketplace listings with: listing_id, bot_id, title, description, domain, creator, monthly_price_usd, stats (win_rate, return_bps, sharpe), subscriber_count, and avg_rating.
sandbox
sandbox_backtest
Run a sandbox backtest of strategy code without persisting anything. This is the fastest way to test a strategy. The code is run through static checks and a full backtest on historical data, but no Strategy rows are created. Use this for rapid iteration. Args: code: Python source code implementing the Strategy contract. Must define a METADATA dict and a class extending Strategy with an on_bar(ctx) -> Signal method. See the strategy template resource. domain: Trading domain (e.g. "eth_usdc", "btc_usdc", "sol_usdc"). user_id: Identifier for the creator (requires authentication for this endpoint). api_key: Your dMoERA Personal Access Token. Required for this tool. Get one at https://dmoera.xyz → Settings → API Keys. (If running locally with DMOERA_API_KEY env var set, this can be omitted.) Returns JSON with: success, metrics (sharpe, sortino, win_rate, total_trades, return_bps, max_drawdown, regime_breakdown), or error details if validation failed.
strategies
list_strategies
List all strategies created by a user. Args: user_id: The creator's user ID (authentication required). api_key: Your dMoERA Personal Access Token. Required for this tool. Get one at https://dmoera.xyz → Settings → API Keys. (If running locally with DMOERA_API_KEY env var set, this can be omitted.) Returns JSON array of strategies with: id, bot_id, name, domain, status, and created_at.
strategy
get_strategy_report
Get a detailed report card for a strategy. Includes validation run results for all 7 stages, performance metrics, and the integrity block (code hash, AST hash, parameter fingerprint). Args: strategy_id: The strategy's database ID. Returns JSON with: strategy details, latest validation runs, metrics.
submit
submit_strategy
Submit a strategy for full validation and live deployment. Runs the complete 7-stage validation pipeline: 1. static_check — code safety (banned imports, syntax) 2. in_sample — sanity check on training data 3. out_of_sample — test on unseen data (70/30 split) 4. walk_forward — rolling window validation 5. randomized_start — different random start points 6. perturbation — market stress test 7. holdout — server-side reserved data (pass/fail only) If all stages pass, the strategy is registered for isolated live paper trading with status="incubating". Promotion to "live" requires a proven track record. Args: name: Human-readable strategy name (e.g. "ETH Momentum v2"). domain: Trading domain key (e.g. "eth_usdc"). code: Python source code implementing the Strategy contract. user_id: The creator's user ID (authentication required). symbol: Price symbol (auto-detected from domain if omitted). api_key: Your dMoERA Personal Access Token. Required for this tool. Get one at https://dmoera.xyz → Settings → API Keys. (If running locally with DMOERA_API_KEY env var set, this can be omitted.) Returns JSON with: success, strategy_id, bot_id, validation results per stage, or error details.
tournament
get_tournament_status
Get current tournament round status and leaderboard. Tournaments run every 3 days. Top 3 bots per domain win prizes from the reward pool. Scoring is based on the bot's own performance: 50% risk-adjusted (rolling Sharpe), 30% total return, 20% consistency. Returns JSON with: current round info (round_id, start/end time, reward_pool_usd, total_participants, hours_remaining), and leaderboard entries.

Endpoints

URLTransportStateLatencyChecked
https://dmoera.xyz/mcp streamable-http answering 953 ms 0 min ago

Alternatives to dMoERA Creator

same job, measured the same way
CPZAI
by cpz-lab-mcp

Build, backtest, and deploy quantitative trading strategies from your AI agent.

answering
Sentinel
by clarencyu-boop

Crypto trading backtesting, bot deployment, AI strategy, and account management for Sentinel Bot.

41 installs/wk local only
I
Imperal MCP
by imperalcloud

Build, validate, smoke-test & deploy Imperal declarative IR apps from any LLM or agent.

169 installs/wk local only
BotSpot — AI Trading Bots & Backtesting
by grzesir

AI trading bots: generate strategies, backtest, deploy live to 10+ brokers. No coding required.

answering
Make MCP
by danishashko

Unofficial MCP server for Make.com automation - build, validate & deploy scenarios via AI

110 installs/wk local only
Connic
by connic

Build, test, deploy, and operate Connic agents.

answering
Ateam MCP
by ariekogan

Build, validate, and deploy multi-agent AI solutions from any AI environment.

1 080 installs/wk 57 tools answering
AgentBuilders
by sirarchiemccarthy-oss

Deploy full-stack web apps with database, file storage, auth, and RBAC via a single API call.

13 tools answering

dMoERA Creator — questions

Answers built from our own checks of this server.

What can dMoERA Creator do?
It exposes 16 tools, read directly from the server on our last check. Among them: delist_strategy, fork_strategy, get_bot_profile, get_current_prices, get_feature_catalog, get_marketplace_bots and 10 more. The full list with descriptions is on this page — we take it from the server itself via tools/list, not from a README. How MCP servers expose tools in the first place →
Is dMoERA Creator working right now?
We send a real MCP handshake every 15 minutes. Over the last 24 hours 92 of 92 checks got a reply (100.0%), average response time 942 ms. The bar chart above shows every period we have measured.
How do I connect dMoERA Creator?
Copy the ready config from this page — we generate it for Claude Code, Claude Desktop, Codex, Cursor and VS Code, each with the file path that client actually reads. It is a remote server, so there is nothing to install — the client connects to the address.
Does dMoERA Creator need an API key?
No. dMoERA Creator completed a full MCP handshake with us as an anonymous client and listed its tools without asking for anything. All 16 of them are readable on this page. This is what we observed, not what the docs claim.
How fast is dMoERA Creator?
It answers our handshake in 942 ms on average, which is faster than 11% of all working MCP servers we measure. That is on the slow side — worth knowing if the tool sits inside an interactive loop. The comparison comes from our own checks across the whole registry, every 15 minutes.
Is dMoERA Creator open source?
Yes — it is published under the MIT licence, written in Python and 8 stars on GitHub. The source link is on this page, so you can read exactly what it does with your data before you connect it.