Skill: Document brief

$0.031 per call · USDC via x402 · POST /api/skill/document-brief

Metadata, an AI-written summary, and a preview of the opening pages of a PDF - understand what a document says without reading the whole thing. Send POST /api/skill/document-brief with the required field url and pay $0.031 per call over x402 or MPP (there is no free tier). It returns a JSON object with pack, args, steps and summary.

The catalog's first AI-summarization pack, complementary to document-intel's deterministic format extraction (no AI, no summarization there). Document brief skill pack: one x402 payment runs 3 underlying tools (pdf-info, pdf-summarize, pdf-extract-pages); partial-success per step.

Category: Skill packs · Tags: skill-pack workflow document-brief · Pack overview

TRY IN PLAYGROUND →

Parameters

NameTypeRequiredDescription
urlstringyesPDF URL to summarize (e.g. https://example.com/report.pdf) Also accepted as link, uri, href, page.

Example request

curl -i -X POST https://agent402.tools/api/skill/document-brief \
  -H "Content-Type: application/json" \
  -d '{"url":"https://bitcoin.org/bitcoin.pdf"}'

Without payment this returns HTTP 402 Payment Required with the exact price for skill-document-brief; any x402 v2 or MPP client pays it and retries.

Example response

{
  "pack": "document-brief",
  "args": {
    "url": "https://bitcoin.org/bitcoin.pdf"
  },
  "steps": [
    {
      "slug": "pdf-info",
      "ok": true,
      "result": {}
    },
    {
      "slug": "pdf-summarize",
      "ok": true,
      "result": {}
    },
    {
      "slug": "pdf-extract-pages",
      "ok": true,
      "result": {}
    }
  ],
  "summary": "3/3 steps succeeded"
}
FieldTypeAlways presentIn the example
packstringyesdocument-brief
argsobjectyes1 field: url
stepsarray of objectsyes3 items in the example
summarystringyes3/3 steps succeeded

From an MCP client

catalog.call {
  "slug": "skill-document-brief",
  "params": {
    "url": "https://bitcoin.org/bitcoin.pdf"
  }
}

The hosted connector at https://agent402.tools/mcp needs a payment for skill-document-brief; the stdio package pays it from a wallet or from AGENT402_CREDITS_KEY. Local install: npx -y agent402-mcp.

Errors and behavior

Paid call (JavaScript agent)

import { wrapFetchWithPayment } from "@x402/fetch";
import { x402Client } from "@x402/core/client";
import { registerExactEvmScheme } from "@x402/evm/exact/client";
import { privateKeyToAccount } from "viem/accounts";

const client = new x402Client();
client.setSpendControls?.(false); // keep your own spending ceiling in code
registerExactEvmScheme(client, { signer: privateKeyToAccount(KEY) });
const payFetch = wrapFetchWithPayment(fetch, client);

const res = await payFetch("https://agent402.tools/api/skill/document-brief", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    "url": "https://bitcoin.org/bitcoin.pdf"
  }),
});

Related tools

Skill: Convert anything to markdown

$0.026 · POST /api/skill/any-to-markdown

Convert anything at a URL - HTML, PDF, or an image - to clean markdown. The 'I have a URL but it might be any content-ty…

Skill: API health check

$0.005 · POST /api/skill/api-health

Is this API endpoint healthy? Liveness check, response headers, and TLS certificate status in one pass. API health check…

Skill: API investigation

$0.017 · POST /api/skill/api-investigation

Point at an unknown API endpoint and figure out how to use it: auth scheme, content type, version, rate limits, OpenAPI/…

Skill: Article digest

$0.09 · POST /api/skill/article-digest

Quick research brief on any topic - web search results plus an AI-generated answer in one pass. Article digest skill pac…

Skill: Brand protection

$0.018 · POST /api/skill/brand-protection

Is this domain legitimate? WHOIS age, DNS resolution, scam/phishing search results, and HTTP headers for a quick trust a…

Skill: Cheapest rail right now

$0.009 · POST /api/skill/cheapest-rail

Where should an agent transact this minute? Live gas on Ethereum + every major L2 side by side, Base gas tiers, a fee es…