VS Code (GitHub Copilot)

Connect the Paradex MCP server to VS Code in a few steps.
1

Complete prerequisites

Follow the Prerequisites guide to install Python, uvx, and get your Paradex private key.

2

Add the Paradex MCP server

Create a .vscode/mcp.json file in the root of your project folder (create the .vscode folder if it doesn’t exist):

{
"servers": {
"paradex": {
"type": "stdio",
"command": "uvx",
"args": ["mcp-paradex"],
"env": {
"PARADEX_ENVIRONMENT": "prod",
"PARADEX_ACCOUNT_PRIVATE_KEY": "your_private_key_here"
}
}
}
}

Replace your_private_key_here with your actual key.

3

Reload VS Code

Reload the window — the tools will appear in Copilot Chat.

4

Verify it’s working

Ask your AI assistant:

“What markets are available on Paradex?”

If you get a list of trading pairs, you’re connected.

To test trading access, ask:

“Show me my Paradex account summary.”