edgex-mcp (realnaka/edgex-mcp) is an MCP server listed on the M8ven Trust Index. It scores 56 out of 100, grade D. It declares 17 tools. No publisher has claimed this listing.

D
Caution
56/100

edgex-mcp

MCP server for EdgeX perpetual contract trading, providing 16 AI agent tools for market data, account management, and order execution.

Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

Code Verified⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

realnaka

Source: Glama

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.

// key findings
⚠️
Known vulnerabilities in dependencies: 4 high
Affects packages this MCP installs at runtime. Upgrade or remove the affected dependency.
No credential exfiltration, no sensitive file access, no obfuscation
Static analysis found nothing flowing your secrets to unexpected places.
Open source with a license and README
Anyone can audit the code, the license is declared, and the publisher documents what it does.
🔐
You'll be asked for 1 credential: EDGEX_STARK_PRIVATE_KEY
These are read from process.env at runtime. Make sure you trust where they’ll be sent.
// tools this server exposes17 tools

These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.

edgex_get_auth_status

Check if authentication is configured. CALL THIS FIRST at the start of every session. Returns whether account credentials are set up and what tools are available.

edgex_get_environment

Get current MCP environment: baseUrl, testnet/mainnet, and auth status.

edgex_get_ticker

Get 24h ticker: price, volume, open interest, funding rate. Omit symbol to get all contracts (uses cached contract list, may return subset).

edgex_get_depth

Get order book depth (bids and asks) for a contract.

edgex_get_kline

Get candlestick/kline data for technical analysis.

edgex_get_funding

Get current and predicted funding rate. Positive = longs pay shorts. Omit symbol for first N contracts from cache.

edgex_get_ratio

Get long/short ratio aggregated from multiple exchanges (Binance, OKX, Bybit, etc.).

edgex_get_summary

Get market-wide volume and trading summary.

edgex_get_balances

Get account balances, positions, and equity. Requires EDGEX_ACCOUNT_ID and EDGEX_STARK_PRIVATE_KEY.

edgex_get_positions

Get open positions with unrealized PnL. Returns empty array if no positions.

edgex_get_orders

Get active/pending orders.

edgex_get_order_status

Get status of a specific order by ID.

edgex_get_max_size

Get maximum order size for a contract given current balance and leverage.

edgex_set_leverage

Set leverage for a contract. EdgeX uses cross-margin mode.

edgex_place_order

Place a limit or market order. For stock contracts during market closure, only limit orders are allowed. ALWAYS confirm with the user before calling this tool.

edgex_cancel_order

Cancel one or more orders by ID.

edgex_cancel_all_orders

Cancel all active orders, optionally filtered by symbol.

// known CVEs in dependencies4 high7 low

Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.

highundici@7.22.0GHSA-f269-vfmq-vjvj

Undici: Malicious WebSocket 64-bit length overflows parser and crashes the client

highundici@7.22.0GHSA-v9p9-hfj2-hcw8

Undici has Unhandled Exception in WebSocket Client Due to Invalid server_max_window_bits Validation

highundici@7.22.0GHSA-vrm6-8vpv-qv8q

Undici has Unbounded Memory Consumption in WebSocket permessage-deflate Decompression

highundici@7.22.0GHSA-vxpw-j846-p89q

undici WebSocket client vulnerable to denial of service via fragment count bypass

lowundici@7.22.0GHSA-2mjp-6q6p-2qxm

Undici has an HTTP Request/Response Smuggling issue

Depend on this server? Get alerted when its CVEs change.Watch this server free →
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
configEDGEX_ACCOUNT_ID"": "your-account-id",
configEDGEX_BASE_URLNo Override REST API URL
🔐 secretEDGEX_STARK_PRIVATE_KEY"": "0x..."
configEDGEX_TESTNETNo Set to 1 for testnet
configEDGEX_WS_URL
configHTTPS_PROXY/ https_proxy No HTTP proxy URL (see below)
configHTTP_PROXYWhy this is needed: npx spawns a new Node.js process that does not inherit your shell's proxy environment variables. You must explicitly pass HTTPS_PROXY (or ) in the MCP env block.
confighttp_proxy
confighttps_proxyHTTPS_PROXY / No HTTP proxy URL (see below)
// quality suggestions

Tool annotations

No tools have read-only/destructive annotations

Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.

All four hints declared on every tool

17/17 tools missing one or more hints — edgex_get_auth_status (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); edgex_get_environment (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); edgex_get_ticker (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +14 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.

For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.

Tool inputs are validated

12/17 tool handlers declare input schemas (71%)

Declare an inputSchema with zod/joi/yup on every tool definition.

Tests exist

No test files found

Add tests that exercise each declared tool.

Production dependencies are patched

0 critical, 4 high severity in production deps — undici@7.22.0 (high), undici@7.22.0 (high)

Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 5 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/realnaka/edgex-mcp?variant=verified)](https://m8ven.ai/mcp/realnaka/edgex-mcp)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: 2dbee1e25370371173f894f347ee4fe53107c9df
code hash: 93656d5d40c82c395ae115df9d084284757707c1c484a309e59dafd9b4254ba8
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client