CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Browser Proof

shin1219-eng/browser-proof
authHTTP, SSEregistry active
Summary

This server gives your agent a way to verify claims on public webpages and get back structured proof: answer text, extracted evidence, and a screenshot. It's built for fact-checking scenarios like confirming a listed price is actually on the page, validating that required policy language appears, or backing up research citations with the exact source text. You get a deterministic JSON response plus visual evidence for auditability. Access the verify_claim tool via MCP at proof.reprompt.jp/mcp or call the HTTP API directly. Production use requires an API key with credit-based pricing starting at a trial tier with 20 credits per month.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Browser Proof

Browser Proof is evidence-backed web verification for agents.

Browser Proof is a verification component for agents that checks claims on public webpages and returns structured results with evidence text, screenshots, and deterministic JSON.

It is not a general-purpose browser automation product.
It is designed for situations where an agent needs external confirmation with evidence.

What it does

Browser Proof helps agents:

  • verify whether a claim appears on a public webpage
  • extract supporting evidence text
  • capture a screenshot for auditability
  • return a stable JSON response for downstream systems

Production access

Production Browser Proof access now requires an API key.

  • MCP remote access requires X-API-Key
  • HTTP API access requires X-API-Key
  • Registry visibility remains public for discovery, but live usage is not anonymous

Current launch plans:

  • trial: 20 credits / month
  • starter: 1000 credits / month
  • pro: 10000 credits / month

Initial credit costs:

  • verify_claim: 5 credits
  • list_runs: 1 credit
  • get_run: 1 credit
  • get_run_screenshot: 1 credit

If you need a key for evaluation or paid use, contact RePrompt through the support or sales channel listed for this project.

Typical use cases

  • Pricing check: confirm whether a price is actually shown on a page
  • Policy validation: verify whether required language appears on a landing page
  • Listing QA: confirm whether a job post, real-estate listing, or product page still matches expected facts
  • Citation-backed research support: retrieve the exact text used as evidence

Quick start

HTTP API

curl -X POST https://proof.reprompt.jp/api/browser-proof \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://example.com",
    "task": "Check whether this page says it is for use in documentation."
  }'

Example response:

{
  "success": true,
  "answer": "Yes, the page states that it is for use in documentation examples.",
  "evidence_text": "This domain is for use in documentation examples without needing permission.",
  "source_url": "https://example.com",
  "checked_at": "2026-04-08T15:00:00Z",
  "screenshot_url": "supabase://browser-proof-evidence/example.com/root/2026-04-08T15-00-00-000Z.jpg",
  "error": null
}

Notes:

  • screenshot_url is currently returned as an internal storage reference string.
  • Clients that need a retrievable screenshot URL should use the run retrieval interfaces or MCP tools.

MCP connection

Browser Proof exposes remote MCP endpoints.

  • Recommended (Streamable HTTP): https://proof.reprompt.jp/mcp
  • SSE: https://proof.reprompt.jp/mcp/sse

See:

  • server.json
  • examples/
  • docs/mcp.md

HTTP endpoints

  • POST /api/browser-proof
  • GET /api/runs
  • GET /api/runs/:id
  • GET /api/runs/:id/screenshot
  • GET /health

Authentication

Production use requires an API key.

  • Preferred header: X-API-Key: YOUR_API_KEY
  • Bearer-style client configuration may be supported for compatibility, but X-API-Key is the canonical format
  • Do not store live keys in this repository
  • Keys are issued individually and may be rate-limited or credit-limited by plan

See:

  • docs/auth.md
  • examples/mcp/

Limits, retention, and privacy

See:

  • docs/limits.md
  • docs/retention.md
  • docs/privacy.md

If a value is not finalized, mark it as planned or to be finalized. Do not present tentative values as final.

Repository purpose

This repository is the public shelf for Browser Proof:

  • discovery
  • connection details
  • interface reference
  • examples
  • integration guidance

Implementation details live separately in the private core repository.

Related files

  • agent-card.json
  • server.json
  • openapi.yaml
  • schema/
  • examples/
  • docs/
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Web & Browser AutomationData & Analytics
Registryactive
TransportHTTP, SSE
AuthRequired
UpdatedApr 8, 2026
View on GitHub

Related Web & Browser Automation MCP Servers

View all →
Browser Use

therealtimex/browser-use

AI browser automation - navigate, click, type, extract content, and run autonomous web tasks
Fetcher

jae-jae/fetcher-mcp

Fetch web page content using a Playwright headless browser with intelligent content extraction and Markdown/HTML output.
1k
Puppeteer

merajmehrabi/puppeteer-mcp-server

This MCP server provides browser automation capabilities through Puppeteer, allowing interaction with both new browser instances and existing Chrome windows.
449
Playwright Mcp Server

com.thenextgennexus/playwright-mcp-server

Headless browser primitives for AI agents when sites need real JS rendering.
Browser

saik0s/mcp-browser-use

Provides a browser automation MCP server that lets AI assistants control a real browser for navigation, form interaction, data extraction, and more.
933
Browser Use

kontext-dev/browser-use-mcp-server

Browse the web, directly from Cursor etc.
822