From ef68e7fc69babfed6e5601b77102eb578cb85ab8 Mon Sep 17 00:00:00 2001 From: Zhi Ye <138628457+xyz-5@users.noreply.github.com> Date: Tue, 31 Mar 2026 16:52:00 -0700 Subject: [PATCH 1/4] feat: add TensorPath GPU rental service MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds TensorPath to `schemas/services.ts` — a GPU rental platform with SSH access, paid per-minute via MPP. Co-Authored-By: Claude Opus 4.6 (1M context) --- schemas/services.ts | 64 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/schemas/services.ts b/schemas/services.ts index 27d6c3dc..4b38f467 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -6017,6 +6017,70 @@ export const services: ServiceDef[] = [ ], }, + // ── TensorPath ────────────────────────────────────────────────────── + { + id: "tensorpath", + name: "TensorPath", + url: "https://tensorpath.io", + serviceUrl: "https://mpp.tensorpath.io", + description: + "Rent dedicated GPUs with SSH access — pay per-minute with stablecoins via MPP.", + categories: ["compute"], + integration: "first-party", + tags: [ + "gpu", + "compute", + "ssh", + "rental", + "cloud", + "machine-learning", + "inference", + ], + docs: { + homepage: "https://mpp.tensorpath.io/v1/reference", + llmsTxt: "https://mpp.tensorpath.io/llms.txt", + apiReference: "https://mpp.tensorpath.io/v1/reference", + }, + provider: { name: "TensorPath", url: "https://tensorpath.io" }, + realm: "mpp.tensorpath.io", + intent: "charge", + payment: TEMPO_PAYMENT, + endpoints: [ + // Discovery (free) + { + route: "GET /v1/catalog", + desc: "List available GPU types with pricing and specs", + }, + { + route: "GET /v1/catalog/:instanceTypeId", + desc: "Get GPU type details and available OS images", + }, + // Instance management (paid) + { + route: "POST /v1/instances", + desc: "Launch a GPU instance — price varies by GPU type and duration", + dynamic: true, + amountHint: "varies by GPU type and duration", + unitType: "request", + }, + { + route: "GET /v1/instances", + desc: "List active GPU rentals", + }, + { + route: "GET /v1/instances/:instanceId", + desc: "Get instance status and connection details", + }, + { + route: "POST /v1/instances/:instanceId/extend", + desc: "Extend GPU rental duration", + dynamic: true, + amountHint: "varies by GPU type and duration", + unitType: "request", + }, + ], + }, + // ── Timezone ───────────────────────────────────────────────────────── { id: "abstract-timezone", From 929879f8c8818a48bc71b0ec99246989583ad58d Mon Sep 17 00:00:00 2001 From: Zhi Ye <138628457+xyz-5@users.noreply.github.com> Date: Tue, 31 Mar 2026 16:59:04 -0700 Subject: [PATCH 2/4] feat: add ai to TensorPath categories and tags Co-Authored-By: Claude Opus 4.6 (1M context) --- schemas/services.ts | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/schemas/services.ts b/schemas/services.ts index 4b38f467..ad446236 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -3996,7 +3996,15 @@ export const services: ServiceDef[] = [ "The agent exchange. Discover, hire, and pay agents for coding, design, writing, and more. Pay per request with stablecoins on Tempo.", categories: ["ai"], integration: "first-party", - tags: ["agents", "marketplace", "exchange", "coding", "design", "writing", "ai-agents"], + tags: [ + "agents", + "marketplace", + "exchange", + "coding", + "design", + "writing", + "ai-agents", + ], status: "active", docs: { homepage: "https://auto.exchange/docs", @@ -6025,9 +6033,10 @@ export const services: ServiceDef[] = [ serviceUrl: "https://mpp.tensorpath.io", description: "Rent dedicated GPUs with SSH access — pay per-minute with stablecoins via MPP.", - categories: ["compute"], + categories: ["ai", "compute"], integration: "first-party", tags: [ + "ai", "gpu", "compute", "ssh", From b7fe7f69b1f2d4d3d0b87f4506ee4e7cb97798e5 Mon Sep 17 00:00:00 2001 From: Zhi Ye <138628457+xyz-5@users.noreply.github.com> Date: Tue, 31 Mar 2026 17:04:56 -0700 Subject: [PATCH 3/4] fix: improve TensorPath description Co-Authored-By: Claude Opus 4.6 (1M context) --- schemas/services.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/services.ts b/schemas/services.ts index ad446236..fb53ec54 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -6032,7 +6032,7 @@ export const services: ServiceDef[] = [ url: "https://tensorpath.io", serviceUrl: "https://mpp.tensorpath.io", description: - "Rent dedicated GPUs with SSH access — pay per-minute with stablecoins via MPP.", + "On-demand GPU compute with SSH access for AI and ML workloads — pay per-minute with stablecoins.", categories: ["ai", "compute"], integration: "first-party", tags: [ From 6713059e237b36be55b54efc4989e0b8a623a51d Mon Sep 17 00:00:00 2001 From: Zhi Ye <138628457+xyz-5@users.noreply.github.com> Date: Tue, 31 Mar 2026 17:09:04 -0700 Subject: [PATCH 4/4] feat: add TensorPath GPU rental service MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds TensorPath to the MPP service directory — on-demand GPU compute with SSH access for AI and ML workloads, paid per-minute via MPP. Co-Authored-By: Claude Opus 4.6 (1M context) --- schemas/services.ts | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/schemas/services.ts b/schemas/services.ts index fb53ec54..c4d42188 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -3996,15 +3996,7 @@ export const services: ServiceDef[] = [ "The agent exchange. Discover, hire, and pay agents for coding, design, writing, and more. Pay per request with stablecoins on Tempo.", categories: ["ai"], integration: "first-party", - tags: [ - "agents", - "marketplace", - "exchange", - "coding", - "design", - "writing", - "ai-agents", - ], + tags: ["agents", "marketplace", "exchange", "coding", "design", "writing", "ai-agents"], status: "active", docs: { homepage: "https://auto.exchange/docs", @@ -6032,7 +6024,7 @@ export const services: ServiceDef[] = [ url: "https://tensorpath.io", serviceUrl: "https://mpp.tensorpath.io", description: - "On-demand GPU compute with SSH access for AI and ML workloads — pay per-minute with stablecoins.", + "Rent on-demand dedicated GPU with SSH access for AI and ML workloads — pay per-minute with stablecoins.", categories: ["ai", "compute"], integration: "first-party", tags: [