get_account
Retrieve your Tuning Engines account information and settings to manage AI model fine-tuning configurations.
Instructions
Get your Tuning Engines account details and settings.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/client.ts:158-160 (handler)The API client method that performs the network request for get_account.
async getAccount(): Promise<any> { return this.request("GET", "/api/v1/account"); } - src/mcp.ts:468-470 (handler)The MCP server handler that triggers get_account for the tool request.
case "get_account": result = await client.getAccount(); break; - src/mcp.ts:291-297 (registration)The definition and registration of the 'get_account' tool in the MCP server.
name: "get_account", description: "Get your Tuning Engines account details and settings.", inputSchema: { type: "object" as const, properties: {}, }, },