- Home
- MCP servers
- CVEX
CVEX
- javascript
0
GitHub Stars
javascript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"siomochkin-cvex-mcp-server": {
"command": "npx",
"args": [
"@modelcontextprotocol/server-cvex",
"--api-key",
"YOUR_API_KEY",
"--private-key-path",
"/path/to/private_key.pem"
]
}
}
}You can use the CVEX MCP Server to securely interact with the CVEX trading platform through Claude. It lets you access market data, review your account information, and place trades via the MCP interface, while keeping your private key protected and used only when signing requests.
How to use
Connect Claude to CVEX by launching the MCP server through the Claude client. You will provide your CVEX API key and your private key path so trading actions can be signed securely. Once connected, you can ask Claude to fetch market data, review your balances, estimate orders, and place trades. Always verify order details before executing a trade.
How to install
Prerequisites: you need Node.js and npm installed on your system.
Install the CVEX MCP Server globally with npm.
Available tools
getMarketData
Fetch market data for a specific CVEX contract, including current price, volume, and bid/ask information.
getContractDetails
Retrieve detailed information about a given CVEX contract, such as contract specs and trading parameters.
getAccountInformation
Obtain account balances and current positions associated with your CVEX account.
estimateOrder
Estimate the cost, fees, and potential slippage for a proposed order without executing it.
placeOrder
Submit a new order to the CVEX exchange with specified parameters (type, price, amount, etc.).