This MCP server provides a bridge between AI assistants and the Paradex perpetual futures trading platform, enabling assistants to retrieve market data, manage trading accounts, place orders, and monitor positions through the Model Context Protocol (MCP) standard.
uvx mcp-paradex
pip install mcp-paradex
npx -y @smithery/cli install @sv/mcp-paradex-py --client claude
claude mcp add paradex uvx mcp-paradex
# Run with public access only
docker run --rm -i sv/mcp-paradex-py
# Run with trading capabilities
docker run --rm -e PARADEX_ACCOUNT_PRIVATE_KEY=your_key -i sv/mcp-paradex-py
To authenticate and use the server, you need to set these environment variables:
PARADEX_ENVIRONMENT
: Set to testnet
or mainnet
PARADEX_ACCOUNT_PRIVATE_KEY
: Your Paradex account private keycp .env.template .env
# Edit .env with your credentials
Add to your claude_desktop_config.json
:
{
"mcpServers": {
"paradex": {
"command": "uvx",
"args": ["mcp-paradex"],
"env": {
"PARADEX_ENVIRONMENT": "testnet",
"PARADEX_ACCOUNT_PRIVATE_KEY": "your_private_key"
}
}
}
}
paradex://system/config
- Get Paradex system configurationparadex://system/time
- Get current system timeparadex://system/state
- Get system operational stateparadex://markets
- List of available marketsparadex://market/summary/{market_id}
- Detailed market informationparadex://vaults
- List all vaultsparadex://vaults/config
- Global vault configurationparadex://vaults/balance/{vault_id}
- Vault balanceparadex://vaults/summary/{vault_id}
- Comprehensive vault summaryparadex://vaults/transfers/{vault_id}
- Deposit/withdrawal historyparadex://vaults/positions/{vault_id}
- Current trading positionsparadex://vaults/account-summary/{vault_id}
- Trading account informationparadex_system_config
- Get global system configurationparadex_system_state
- Get current system stateparadex_markets
- Get detailed market informationparadex_market_summaries
- Get market summaries with metricsparadex_funding_data
- Get historical funding rate dataparadex_orderbook
- Get current orderbook with customizable depthparadex_klines
- Get historical candlestick dataparadex_trades
- Get recent tradesparadex_bbo
- Get best bid and offerparadex_account_summary
- Get account summaryparadex_account_positions
- Get current positionsparadex_account_fills
- Get trade fillsparadex_account_funding_payments
- Get funding paymentsparadex_account_transactions
- Get transaction historyparadex_open_orders
- Get all open ordersparadex_create_order
- Create new orderparadex_cancel_orders
- Cancel existing ordersparadex_order_status
- Get order statusparadex_orders_history
- Get historical ordersparadex_vaults
- Get detailed vault informationparadex_vaults_config
- Get global vault configurationparadex_vault_balance
- Get vault balanceparadex_vault_summary
- Get comprehensive vault summaryparadex_vault_transfers
- Get deposit/withdrawal historyparadex_vault_positions
- Get current vault positionsparadex_vault_account_summary
- Get vault trading account infomarket_overview
- Comprehensive crypto market overviewmarket_analysis
- Detailed technical and microstructure analysisposition_management
- Comprehensive position analysiscreate_optimal_order
- Design optimal order parametershedging_strategy
- Develop effective hedging strategiesportfolio_risk_assessment
- Thorough portfolio risk analysisliquidation_protection
- Identify and mitigate liquidation risksvault_analysis
- Comprehensive vault analysis for investment decisionsfunding_rate_opportunity
- Identify funding rate arbitrage opportunitiestrading_consultation
- Interactive trading advice and consultationAdd Paradex documentation access with this configuration:
"paradex-docs-mcp": {
"command": "uvx",
"args": [
"--from",
"mcpdoc",
"mcpdoc",
"--urls",
"Paradex:https://docs.paradex.trade/llms.txt",
"--transport",
"stdio"
]
}
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "paradex" '{"command":"uvx","args":["--with-editable",".","mcp-paradex"],"env":{"PARADEX_ENVIRONMENT":"testnet","PARADEX_ACCOUNT_PRIVATE_KEY":"your_private_key"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"paradex": {
"command": "uvx",
"args": [
"--with-editable",
".",
"mcp-paradex"
],
"env": {
"PARADEX_ENVIRONMENT": "testnet",
"PARADEX_ACCOUNT_PRIVATE_KEY": "your_private_key"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"paradex": {
"command": "uvx",
"args": [
"--with-editable",
".",
"mcp-paradex"
],
"env": {
"PARADEX_ENVIRONMENT": "testnet",
"PARADEX_ACCOUNT_PRIVATE_KEY": "your_private_key"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect