Memory MCP Server
Persistent memory using a knowledge graph
Simple MCP server which is connected with coindcx api to get balance, place orders, cancel orders
{
"mcpServers": {
"coindcx-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Simple MCP server which is connected with coindcx api to get balance, place orders, cancel orders
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 0 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationNo known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Hash-verified file editing MCP server with token efficiency hook. 11 tools for AI coding agents.
MCP Security Weekly
Get CVE alerts and security updates for Coindcx_mcp_server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A minimal MCP (Model Context Protocol) server written in Rust that exposes your CoinDCX futures wallet balance as a tool to Claude Desktop.
MCP (Model Context Protocol) is an open standard that lets AI models like Claude interact with external tools and data sources. Instead of Claude only knowing what's in its training data, an MCP server lets you expose real-time data and actions — like fetching your live account balance — directly into a Claude conversation.
Think of it as a plugin system for Claude: you write a server that defines "tools", and Claude can call those tools on your behalf during a conversation.
Claude Desktop ──► MCP Protocol (stdin/stdout) ──► coindcx-mcp-server ──► CoinDCX API
◄── ◄── ◄──
stdin/stdout using the MCP protocolget_futures_wallet_balance tool| Tool | Description |
|---|---|
get_futures_wallet_balance | Fetches your CoinDCX futures wallet balances in real time |
That's it — intentionally simple. This is a working foundation you can extend with more tools (place orders, get positions, etc.).
git clone https://github.com/your-username/coindcx-mcp-server.git
cd coindcx-mcp-server
.env filecp .env.example .env
Edit .env and fill in your CoinDCX API credentials:
COINDCX_API_KEY=your_api_key_here
COINDCX_API_SECRET=your_api_secret_here
You can generate API keys from your CoinDCX API settings.
cargo build --release
The binary will be at target/release/coindcx-mcp-server.
cargo run --release
The server will start and wait for MCP messages on stdin. You won't see any output — that's expected. Kill it with Ctrl+C.
| OS | Path |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
cwd to load .env automaticallyThis keeps your API keys out of the config file. The server reads them from .env at startup.
{
"mcpServers": {
"coindcx": {
"command": "/absolute/path/to/coindcx-mcp-server/target/release/coindcx-mcp-server",
"cwd": "/absolute/path/to/coindcx-mcp-server"
}
}
}
Replace /absolute/path/to/coindcx-mcp-server with the actual path on your machine. For example on macOS:
{
"mcpServers": {
"coindcx": {
"command": "/Users/yourname/projects/coindcx-mcp-server/target/release/coindcx-mcp-server",
"cwd": "/Users/yourname/projects/coindcx-mcp-server"
}
}
}
cargo run (no separate build step)Convenient during development. Cargo will recompile if needed and the .env is picked up automatically.
{
"mcpServers": {
"coindcx": {
"command": "/Users/yourname/.cargo/bin/cargo",
"args": [
"run",
"--release",
"--manifest-path",
"/Users/yourname/projects/coindcx-mcp-server/Cargo.toml"
]
}
}
}
Note: If
cargoisn't found, use its full path. Runwhich cargoin your termin