AgentRender
MCP + REST สำหรับ AI agents — เปลี่ยน URL สาธารณะใดๆ ให้เป็นภาพหน้าจอ PDF หรือการแยกข้อมูลแบบมีโครงสร้างพร้อมใบเสร็จการเรนเดอร์ คีย์รอคิวฟรี แผนชำระเงินเริ่มต้นที่ $17/เดือน
เอกสาร
Remote MCP live · ChatGPT-ready
Give ChatGPT eyes on any public URL — screenshot, PDF, or extract via MCP.
Connect ChatGPT, Codex, and other agents to any public page through remote MCP or REST. No Chrome fleet to babysit. Honest free tier. Transparent pricing.
Public demo API is live with real Playwright renders. Paid plans charge via live Stripe checkout — no fake testimonials, no fabricated customer counts.
Screenshot
PNG / JPEG / WebP. Viewport or full page. Render receipt with hash for agent audit trails.
URL to PDF for reports, archives, and agent handoffs.
Extract
Title, meta, main text, links as JSON — readability-first.
MCP-native
Remote MCP + stdio for screenshot, PDF, extract. Universal URL: https://api.agentrenderapi.com/mcp · REST https://api.agentrenderapi.com
Quickstart
Base URL: https://api.agentrenderapi.com · Interactive docs: /docs
Request a free demo key via waitlist (or use key issued by AgentRender). Set it in your environment — do not paste secrets into shared HTML or public posts.
# Load your demo key from env (never hardcode in pages or chats)
export KEY="${KEY:?set KEY to your AgentRender demo API key}"
export BASE=https://api.agentrenderapi.com
# Public health (no key)
curl -s "$BASE/health"
# Extract (Bearer required)
curl -s -X POST "$BASE/v1/extract" \
-H "Authorization: Bearer $KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com"}'
# Screenshot → PNG file
curl -s -X POST "$BASE/v1/screenshot" \
-H "Authorization: Bearer $KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com","format":"png"}' \
-o shot.png
Also see openapi.json. Real Chromium via Playwright on Fly — screenshot, PDF, and extract.
MCP for agents
Remote MCP is live and ChatGPT-ready — connect with the Universal URL below. Tools: screenshot, pdf, extract.
stdio package also available against https://api.agentrenderapi.com. Install: GitHub · PyPI · Glama · mcpservers.org · MCP Registry
pip install agentrender-mcp
export AGENTRENDER_API_KEY=akr_your_key
agentrender-mcp
Get a key via waitlist (free) or live paid checkout, then point ChatGPT / Codex / Cursor / Claude Desktop at remote https://api.agentrenderapi.com/mcp or stdio agentrender-mcp.
Pricing
Live checkout open — real Stripe charges for Starter/Growth/Scale. Free tier stays waitlist → manual key. Ladder: $17 / $79 / $259.
Free
$0 / mo
- 150 renders / month
- 10 requests / minute
- Screenshot + PDF + extract
- No credit card for waitlist
Starter
$17 / mo
- 2,000 renders / month
- 40 rpm
- API keys + receipts
- MCP access
Growth
$79 / mo
- 10,000 renders / month
- 80 rpm
- Higher concurrency
- Overage when billing ships
Scale
$259 / mo
- 50,000 renders / month
- 150 rpm
- Priority roadmap input
- Enterprise path later
OpenAPI
Live interactive docs: https://api.agentrenderapi.com/docs. Contract teaser below.
{
"openapi": "3.1.0",
"info": { "title": "AgentRender API", "version": "0.1.0" },
"paths": {
"/v1/screenshot": {
"post": {
"summary": "Capture a URL as an image",
"security": [{ "ApiKey": [] }],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"required": ["url"],
"properties": {
"url": { "type": "string", "format": "uri" },
"format": { "enum": ["png", "jpeg", "webp"] },
"full_page": { "type": "boolean" }
}
}
}
}
}
}
},
"/v1/pdf": { "post": { "summary": "Render a URL to PDF" } },
"/v1/extract": { "post": { "summary": "Extract structured page content" } },
"/v1/account": { "get": { "summary": "Plan and quota" } }
}
}
Full OpenAPI ships with the live API. Endpoints above are the current contract.
Support
Need help with keys, billing, or the API? Email [email protected] with subject prefix [AgentRender Support]. We aim to respond within 1 business day.
API reference: /docs on the live API.
Join the waitlist
Waitlist posts to Formspree (free). Signups go to the project inbox. Use this for a free demo key. Prefer Subscribe above if you already want a paid plan — checkout is live.