Skip to main content
Glama

Upbit MCP Server

smithery.yaml860 B
startCommand: type: stdio configSchema: # JSON Schema defining the configuration options for the MCP. type: object properties: UPBIT_ACCESS_KEY: type: string description: Upbit API access key UPBIT_SECRET_KEY: type: string description: Upbit API secret key required: ["UPBIT_ACCESS_KEY", "UPBIT_SECRET_KEY"] commandFunction: # A function that produces the CLI command to start the MCP on stdio. |- (config) => { if (!config.UPBIT_ACCESS_KEY || !config.UPBIT_SECRET_KEY) { throw new Error("Upbit API keys are required"); } return { command: "python", args: [ "main.py" ], env: { UPBIT_ACCESS_KEY: config.UPBIT_ACCESS_KEY, UPBIT_SECRET_KEY: config.UPBIT_SECRET_KEY } }; }

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/solangii/upbit-mcp-server'

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