MCP Hub
Back to servers

sentinel

Requires Setup

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

Registry
Stars
1
Updated
Mar 9, 2026
Validated
Mar 22, 2026

Quick Install

npx -y mcp-server-sentinel

mcp-server-sentinel

English | 繁體中文 | 简体中文 | 日本語 | 한국어

MCP server for Sentinel Bot — algorithmic trading backtesting, bot management, and account operations via AI agents.

This server implements the Model Context Protocol (MCP) and provides 17 tools that let AI agents run crypto backtests, deploy trading bots, manage accounts, and handle payments — all through natural language.

Quick Start

1. Get an API Key

Sign up for free at sentinel.redclawey.com. API key access is available on all plans including the free trial. Generate an API key from your dashboard under Settings > API Keys. Buy credits to start backtesting, then upgrade your plan when you need more bots.

2. Install

Claude Code (recommended)

claude mcp add sentinel -- npx mcp-server-sentinel

Then set the environment variable:

export SENTINEL_API_KEY=sk-your-api-key-here

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "sentinel": {
      "command": "npx",
      "args": ["-y", "mcp-server-sentinel"],
      "env": {
        "SENTINEL_API_KEY": "sk-your-api-key-here"
      }
    }
  }
}

Manual (any MCP client)

{
  "command": "npx",
  "args": ["-y", "mcp-server-sentinel"],
  "env": {
    "SENTINEL_API_KEY": "sk-your-api-key-here",
    "SENTINEL_API_URL": "https://sentinel.redclawey.com/api/v1"
  }
}

Environment Variables

VariableRequiredDefaultDescription
SENTINEL_API_KEYYesYour API key (starts with sk-)
SENTINEL_API_URLNohttps://sentinel.redclawey.com/api/v1API base URL

Tools (17)

Backtesting

ToolDescription
run_backtestSubmit a backtest and wait for the result. Supports 8 entry types and 6 exit types. Returns summary metrics by default; set include_trades=true for full trade list.
get_backtest_resultFetch a specific backtest result by job ID. Optionally polls until completion.
list_backtestsList recent backtest jobs with optional status/symbol filters.
cancel_backtestCancel a running or queued backtest job.

Bot Management

ToolDescription
list_botsList all trading bots with status filter (idle/running/paused/stopped/error/halted).
create_botCreate a new bot. Pass strategy_blocks from a backtest result to deploy a tested strategy.
get_botGet full details and current status of a bot.
start_botStart a bot (must have exchange_id configured). Dispatches live trading signals.
stop_botStop a running or paused bot.
delete_botPermanently delete a bot (must be stopped first).
get_bot_performanceGet cumulative PnL, win rate, and trade count for a bot.

Exchanges

ToolDescription
list_exchangesList configured exchange credentials (Binance, Bybit, OKX, etc.). Use the exchange ID when creating bots.

Account & Payments

ToolDescription
get_account_infoCurrent plan, credits balance, bot usage (used/max), and upgrade suggestions.
get_plan_infoStatic plan pricing and feature comparison across all tiers.
create_payment_linkCreate a Helio checkout link (card/USDC) for plan upgrades or credits top-up.
create_crypto_invoiceCreate a NOWPayments invoice (300+ cryptocurrencies) for plan upgrades or credits top-up.
verify_paymentCheck if a payment completed and the plan was upgraded.

Example Workflow

Here's how an AI agent typically uses these tools:

1. get_account_info        -> Check current plan, credits, bot capacity
2. run_backtest            -> Test a strategy (e.g., EMA cross on BTC 4h)
3. run_backtest            -> Compare with another strategy (e.g., RSI + ATR trail)
4. create_bot              -> Deploy the winning strategy (copy strategy_blocks)
5. list_exchanges          -> Find exchange_id
6. start_bot               -> Go live
7. get_bot_performance     -> Monitor results

If credits run out:

get_account_info           -> credits_balance: 0
create_payment_link        -> strategy_id: "credits_topup", amount_usd: 20
  -> Returns payment URL -> user completes in browser
verify_payment             -> Confirm credits added
run_backtest               -> Resume backtesting

Supported Symbols

BTC, ETH, SOL, XRP, BNB, DOGE, LINK, TRX, SUI

Supported Timeframes

1m, 5m, 15m, 1h, 4h, 1d

Entry Block Types

TypeDescriptionKey Parameters
ema_crossEMA crossoverfast_period, slow_period
macd_crossMACD signal crossoverfast_period, slow_period, signal_period
rsiRSI overbought/oversoldperiod, overbought, oversold
breakoutPrice breakoutperiod, threshold
volume_breakoutVolume spike breakoutperiod, multiplier
bollinger_bounceBollinger Band bounceperiod, std_dev
smc_structureSmart Money Concept structurelookback
smc_level_entrySMC level entrylookback, zone_type

Exit Block Types

TypeDescriptionKey Parameters
fixed_pctFixed percentage TP/SLtp_pct, sl_pct
atr_multATR multiplier TP/SLtp_atr_mult, sl_atr_mult, atr_period
atr_trailATR trailing stoptrail_atr_mult, atr_period
timeTime-based exitmax_bars
key_barKey bar pattern exitpattern
combinedMultiple exit conditionsCombine any of the above

Pricing

PlanPriceBotsAPI KeySymbols
TrialFree (7 days)1YesBTC
Starter$19/mo3Yes5
Pro$49/mo5Yes8
Expert$99/mo8Yes10
Expert 10$125/mo10Yes10
Expert 15$190/mo15Yes10
Expert 30$385/mo30Yes10
Expert 60$775/mo60Yes10

API key access is available on all plans. Start with the free trial, buy credits to run backtests, and upgrade when you need more bots or symbols.

Credits are consumed per backtest run. Top up with create_payment_link or create_crypto_invoice using strategy_id: "credits_topup" (min $10, 17 credits per $1).

Payment Methods

  • Card / USDC: Via Helio (create_payment_link) — Visa, Mastercard, or USDC on Solana
  • 300+ Cryptocurrencies: Via NOWPayments (create_crypto_invoice) — BTC, ETH, SOL, USDT, and more

Development

git clone https://github.com/clarencyu-boop/mcp-server-sentinel.git
cd mcp-server-sentinel
npm install
SENTINEL_API_KEY=sk-your-key node src/index.mjs

License

MIT

Reviews

No reviews yet

Sign in to write a review