From 135720481fd2a4689861d376cb3d2284bacf792c Mon Sep 17 00:00:00 2001 From: Claudio Carnino Date: Fri, 27 Mar 2026 17:04:56 +0000 Subject: [PATCH 1/2] feat: add AgenticTotem to service directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add AgenticTotem — structured web data extraction for AI agents. Accepts URLs and a JSON Schema, returns structured data at $0.01/URL. 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 e7f5cb78..8c6a0da6 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -391,6 +391,31 @@ export const services: ServiceDef[] = [ ], }, + // ── AgenticTotem ──────────────────────────────────────────────────────── + { + id: "agentic-totem", + name: "AgenticTotem", + url: "https://agentictotem.com", + serviceUrl: "https://agentictotem.com", + description: + "Structured web data extraction for AI agents. Send URLs and a JSON Schema, get back structured data.", + categories: ["web", "data", "ai"], + integration: "first-party", + tags: ["extraction", "web-scraping", "structured-data", "ai-agents", "mcp"], + docs: { homepage: "https://agentictotem.com" }, + provider: { name: "AgenticTotem", url: "https://agentictotem.com" }, + realm: MPP_REALM, + intent: "charge", + payment: TEMPO_PAYMENT, + endpoints: [ + { + route: "POST /extract", + desc: "Extract structured data from web pages", + amount: "10000", + }, + ], + }, + // ── Allium ────────────────────────────────────────────────────────────── { id: "allium", From 93b07fe284c9e6d1c0a355b654680f69fea19d2e Mon Sep 17 00:00:00 2001 From: Claudio Carnino Date: Fri, 27 Mar 2026 17:09:48 +0000 Subject: [PATCH 2/2] feat: add AgenticTotem WebExtractor to service directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add AgenticTotem WebExtractor — structured web data extraction. Send URLs and a JSON Schema, receive clean structured data back at $0.01/URL. Co-Authored-By: Claude Opus 4.6 (1M context) --- schemas/services.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/schemas/services.ts b/schemas/services.ts index 8c6a0da6..3e8fc555 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -391,25 +391,25 @@ export const services: ServiceDef[] = [ ], }, - // ── AgenticTotem ──────────────────────────────────────────────────────── + // ── AgenticTotem WebExtractor ──────────────────────────────────────────── { - id: "agentic-totem", - name: "AgenticTotem", - url: "https://agentictotem.com", - serviceUrl: "https://agentictotem.com", + id: "agentic-totem-web-extractor", + name: "AgenticTotem WebExtractor", + url: "https://agentictotem.com/services/web-extractor", + serviceUrl: "https://agentictotem.com/services/web-extractor", description: - "Structured web data extraction for AI agents. Send URLs and a JSON Schema, get back structured data.", + "Structured web data extraction. Send URLs and a JSON Schema describing the data shape you want, receive clean structured data back.", categories: ["web", "data", "ai"], integration: "first-party", tags: ["extraction", "web-scraping", "structured-data", "ai-agents", "mcp"], - docs: { homepage: "https://agentictotem.com" }, + docs: { homepage: "https://agentictotem.com/docs/web-extractor" }, provider: { name: "AgenticTotem", url: "https://agentictotem.com" }, realm: MPP_REALM, intent: "charge", payment: TEMPO_PAYMENT, endpoints: [ { - route: "POST /extract", + route: "POST /services/web-extractor", desc: "Extract structured data from web pages", amount: "10000", },