streamable-httpMITupdated 2mo ago
Structured data from PDFs and web pages, where every value is backed by an exact source quote โ or honestly left null. Never guessed. Each result ships with a cryptographically signed receipt you can verify yourself.
What can you do with proofetch?
proofetch โ verified extraction with proof per field
Structured data from PDFs and web pages, where every value is backed by an exact source quote โ or honestly left null. Never guessed. Each result ships with a cryptographically signed receipt you can verify yourself.
proofetch is a hosted MCP server and HTTP API built for developers and AI agents. You pay only for fields that pass the proof โ โฌ0.02 per verified field. Empty or unprovable fields cost nothing.
- ๐ Landing page & pricing: https://vektoris.de/proofetch
- ๐ค MCP endpoint (remote):
https://proofetch-vektoris-ai-workflows.vercel.app/mcp - ๐งพ Listed in the official MCP registry:
io.github.Vektoris-AI/proofetch
This repository is the public connector & documentation for the hosted proofetch service. The extraction pipeline itself is operated as a service โ you don't self-host it, you call it with an API key.
Why proofetch
Normal extraction fills every field โ even when the value is invented. You then have to re-check every number by hand. proofetch is different:
- Never guesses. Unsure? The field is
null+ flagged, instead of a fabricated value. - Provenance per field. Every value comes with the exact source quote, verifiable against the original document.
- Signed receipt. The result is sealed in a signed receipt (Ed25519) โ you, or an escrow, verify it without having to trust us.
- Pay for truth only. Billing is per field that passes the proof (
verdict: PASS).
Get an API key
Buy prepaid balance (from โฌ5) on the landing page โ you get your key instantly after payment:
๐ https://vektoris.de/proofetch#preise
Quickstart โ HTTP API
curl -X POST https://proofetch-vektoris-ai-workflows.vercel.app/extract \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"source": { "type": "pdf_url", "value": "https://example.com/invoice.pdf" },
"targetSchema": {
"type": "object",
"properties": {
"invoice_total": { "type": "string" },
"due_date": { "type": "string" },
"invoice_number":{ "type": "string" }
},
"additionalProperties": false
}
}'
Source types (source.type): pdf_url, pdf_base64, url, text, html.
targetSchema is a standard JSON Schema (type: "object", properties, additionalProperties: false).
What you get back
{
"data": {
"invoice_total": "1,190.00 EUR",
"due_date": "2024-09-30",
"invoice_number": null // honest null โ not found in source
},
"fields": [
{ "path": "invoice_total", "value": "1,190.00 EUR", "verdict": "PASS",
"provenance": { "quote": "1,190.00 EUR", "start": 43, "end": 55 } },
{ "path": "invoice_number", "value": null, "verdict": "FAIL", "provenance": null }
],
"verdict": "PARTIAL",
"receipt": { "v": 1, "jobId": "pf_โฆ", "outputHash": "sha256:โฆ" },
"billing": { "charged": true, "amountCents": 4 }
}
dataโ clean JSON, each field proven or honestlynullfields[]โ per field: source quote (provenance) +verdict(PASS/FAIL)verdictโ overall:PASS,PARTIAL, orFAILreceiptโ signed proof with hashes, self-verifiable
Check your balance any time: GET /billing/balance with the same key.
Use as an MCP server (remote)
proofetch speaks the Model Context Protocol over Streamable HTTP. Point any MCP-capable client at the remote endpoint with your key as a bearer token.
Endpoint: https://proofetch-vektoris-ai-workflows.vercel.app/mcp
Auth: Authorization: Bearer YOUR_API_KEY
Tool: verified_extract โ same contract as the HTTP API above.
Example client config (generic MCP streamable-http remote):
{
"mcpServers": {
"proofetch": {
"type": "streamable-http",
"url": "https://proofetch-vektoris-ai-workflows.vercel.app/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
Open standards
proofetch is built for autonomous agents: discoverable via the A2A card and MCP, payable per call via x402 / AP2, and every receipt is independently verifiable.
Links
- Landing page & pricing โ https://vektoris.de/proofetch
- Official MCP registry โ https://registry.modelcontextprotocol.io/?search=proofetch
- Operated by Vektoris โ https://vektoris.de
ยฉ Vektoris. The proofetch service and pipeline are proprietary; this connector/documentation is provided under the MIT License (see LICENSE).
Install
Add proofetch to your client. Pick the one you use.
claude mcp add --transport http proofetch https://proofetch-vektoris-ai-workflows.vercel.app/mcpcodex mcp add proofetch --url https://proofetch-vektoris-ai-workflows.vercel.app/mcp{
"mcpServers": {
"proofetch": {
"url": "https://proofetch-vektoris-ai-workflows.vercel.app/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"proofetch": {
"type": "http",
"url": "https://proofetch-vektoris-ai-workflows.vercel.app/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"proofetch": {
"url": "https://proofetch-vektoris-ai-workflows.vercel.app/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"proofetch": {
"serverUrl": "https://proofetch-vektoris-ai-workflows.vercel.app/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance16/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 66 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 0.0.2Latest | Jun 26, 2026 |
| 0.0.1 | Jun 26, 2026 |