UNPKG

mcp-server-ddd-sample

Version:

A sample of MCP implementation using DDD structure with some APIs call.

13 lines (12 loc) 302 B
export class GeneralRequestService { client; constructor(client) { this.client = client; } async getPrices() { return this.client.makeRequest("prices"); } async getDifficultyAdjustment() { return this.client.makeRequest("difficulty-adjustment"); } }