Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"wallex-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server for interacting with the Wallex Cryptocurrency Exchange API.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol (MCP) server that provides AI assistants with direct access to the Spreedly payments API. Enables LLMs to manage gateways, process transactions, tokenize payment methods, and more, through structured, validated tool calls.
MCP server for InsightSentry financial data API - market data, options, screeners, and more
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
MCP Security Weekly
Get CVE alerts and security updates for Wallex_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 Model Context Protocol (MCP) server for interacting with the Wallex Cryptocurrency Exchange API.
This MCP server provides the following tools:
git clone <repository-url>
cd wallex-mcp-server
go mod tidy
go build -o wallex_mcp_server .
"mcpServers": {
"wallex_mcp": {
"command": "/Users/johnsmith//wallex_mcp_server",
"args": [],
"env": {
"WALLEX_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
command: Path to the Wallex MCP server executable.WALLEX_API_KEY: Add your Wallex API key.Place this block in your Claude MCP configuration file (e.g., ~/.claude.json).
The server communicates via stdio (standard input/output) and implements the MCP protocol. Here's how to use each tool:
Retrieves all asset balances in your wallet.
{
"tool": "get_account_balances",
"arguments": {}
}
Returns a map of assets with:
Retrieves OHLC candlestick data for a specific trading pair and time range.
{
"tool": "get_historical_data_ohlc",
"arguments": {
"symbol": "BTCUSD",
"resolution": "60",
"from": 1640995200,
"to": 1641081600
}
}
Parameters:
symbol (string, required): Trading pair symbol (e.g., "BTCUSD")resolution (string, required): Candle interval
from (integer, required): Start timestamp (Unix timestamp)to (integer, required): End timestamp (Unix timestamp)This project is licensed under the MIT License.