From b9ae7093f958ec2d4e5310fd0e84c08e7cc45467 Mon Sep 17 00:00:00 2001 From: rahuldotiyer Date: Wed, 1 Apr 2026 22:42:08 -0400 Subject: [PATCH] Add Papercut postcard service Co-Authored-By: Claude Opus 4.6 (1M context) --- schemas/services.ts | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/schemas/services.ts b/schemas/services.ts index 2d67f1a2..fd4dbf63 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -6256,4 +6256,29 @@ export const services: ServiceDef[] = [ }, ], }, + + // ── Papercut ─────────────────────────────────────────────────────────── + { + id: "papercut", + name: "Papercut", + url: "https://papercut.lol", + serviceUrl: "https://papercut.lol", + description: + "Postcards penned by your agent. Let your agent roast and send you a digital or physical postcard.", + categories: ["ai", "social"], + integration: "first-party", + tags: ["postcards", "roast", "github", "ai-art"], + docs: { homepage: "https://papercut.lol", llmsTxt: "https://papercut.lol/llms.txt" }, + realm: "papercut.lol", + intent: "charge", + payment: TEMPO_PAYMENT, + endpoints: [ + { + route: "POST /api/send", + desc: "Write and send an agent-penned postcard", + dynamic: true, + amountHint: "$1 digital, $3 physical", + }, + ], + }, ];