get_access_key
Retrieve API access credentials from environment variables to authenticate and connect with the Bybit cryptocurrency trading platform for executing trades and managing accounts.
Instructions
Get access key from environment variables
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:712-720 (handler)Handler implementation for the 'get_access_key' MCP tool. Returns the ACCESS_KEY environment variable as text content.case 'get_access_key': return { content: [ { type: 'text', text: process.env.ACCESS_KEY || '', }, ], };
- src/index.ts:56-62 (registration)Tool registration in the MCP server tools list, including name, description, and empty input schema.name: 'get_access_key', description: 'Get access key from environment variables', inputSchema: { type: 'object', properties: {}, }, },
- src/index.ts:58-61 (schema)Input schema definition for the 'get_access_key' tool (empty object, no parameters required).inputSchema: { type: 'object', properties: {}, },