Skip to main content
Glama
zereight

Bithumb MCP Server

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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; }; }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/zereight/bithumb-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server