get_btci
Retrieve Bithumb Index (BTMI, BTAI) data to monitor cryptocurrency market performance and trends on the Bithumb exchange.
Instructions
Get Bithumb Index (BTMI, BTAI) information (Public)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/bitThumb/index.ts:104-107 (handler)The core handler function for the 'get_btci' tool. It makes a GET request to Bithumb's public 'btci' endpoint and returns the typed response.public async getBtci(): Promise<IGetBtci> { const res = <IGetBtci>await this.requestPublic('btci'); return res; }
- src/index.ts:309-311 (registration)MCP tool dispatch registration: handles 'get_btci' calls by invoking the Bithumb API method.case 'get_btci': result = await this.bithumbApi.getBtci(); break;
- src/index.ts:107-111 (registration)Tool metadata registration: defines name, description, and input schema (empty object) for listing in MCP tools.{ name: 'get_btci', description: 'Get Bithumb Index (BTMI, BTAI) information (Public)', inputSchema: { type: 'object' } // No parameters },
- TypeScript interface for input/output schema validation of the get_btci response data.export interface IGetBtci extends IBithumbResponse { data: { btai: IBtciData; btmi: IBtciData; date: string; }; }