chainz-sentinel-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| NVIDIA_API_KEY | Yes | Your NVIDIA NIM API key. Required to use the AI-powered risk evaluation tools. | |
| NVIDIA_NIM_BASE_URL | No | The base URL for the NVIDIA NIM inference API. | https://integrate.api.nvidia.com/v1 |
| NVIDIA_DEFAULT_MODEL | No | The default model used for trade risk evaluation. | meta/llama-3.1-8b-instruct |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| evaluate_trade_riskB | Evaluates cryptocurrency trade risk and liquidation probability using NVIDIA NIM sub-millisecond GPU inference. |
| parse_trade_intentC | Translates natural language user trading prompts into structured parameters for Binance Agent OS. |
| query_yield_arbitrageA | Compares Binance Earn and funding rates with CHAINZ on-chain zero-debt real-yield vaults (AMM fee sharing + RWA dividends). |
| execute_hedged_tradeB | Routes a trade with pre-trade risk sentinel gating to prevent liquidation cascades and preserve capital. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a generally distinct role: parsing intent, evaluating risk, querying yield opportunities, and executing hedged trades. The only mild overlap is that execute_hedged_trade includes pre-trade risk gating, which could make an agent unsure whether to call evaluate_trade_risk separately.
All four tools follow the same verb_noun snake_case pattern: evaluate_trade_risk, parse_trade_intent, query_yield_arbitrage, execute_hedged_trade. This makes the tool set predictable and easy to navigate.
Four tools is a well-scoped size for a focused risk-sentinel and trade-orchestration server. Each tool provides a distinct, necessary capability without unnecessary bloat.
The set covers an end-to-end flow from intent parsing to risk evaluation to hedged execution and yield comparison. However, it lacks supporting operations such as trade status lookups, position/balance queries, or risk parameter configuration, so an agent cannot fully manage a trade lifecycle natively.