test-proxy-connection
Verify proxy connectivity for a specified cryptocurrency exchange by inputting its ID, ensuring proper integration with the CCXT MCP Server.
Instructions
Test the proxy connection with a specified exchange
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exchange | Yes | Exchange ID to test connection with (e.g., binance) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"exchange": {
"description": "Exchange ID to test connection with (e.g., binance)",
"type": "string"
}
},
"required": [
"exchange"
],
"type": "object"
}