New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

agentrender-mcp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agentrender-mcp

MCP helper: URL to screenshot, PDF, or structured extract for AI agents

pipPyPI
Version
0.1.0
Weekly downloads
297
Maintainers
1
Created

AgentRender MCP

URL → screenshot, PDF, or structured extract for AI agents via MCP (stdio) + REST.

Tools: screenshot · pdf · extract

Install

pip install agentrender-mcp
# or from this repo:
pip install .

Requires an AgentRender API key (akr_…) from https://agentrenderapi.com (free waitlist path or paid Starter $17 / Growth $79 / Scale $259).

Environment

VariableDefaultPurpose
AGENTRENDER_API_KEY(required)Bearer API key
AGENTRENDER_BASE_URLhttps://api.agentrenderapi.comAPI base

Run (stdio)

export AGENTRENDER_API_KEY=akr_your_key
agentrender-mcp
# or: python -m agentrender_mcp.server

Cursor / Claude Desktop

{
  "mcpServers": {
    "agentrender": {
      "command": "agentrender-mcp",
      "env": {
        "AGENTRENDER_API_KEY": "akr_your_key",
        "AGENTRENDER_BASE_URL": "https://api.agentrenderapi.com"
      }
    }
  }
}

If agentrender-mcp is not on PATH, use your Python:

{
  "mcpServers": {
    "agentrender": {
      "command": "python",
      "args": ["-m", "agentrender_mcp.server"],
      "env": {
        "AGENTRENDER_API_KEY": "akr_your_key"
      }
    }
  }
}

Tools

ToolMaps toNotes
screenshotPOST /v1/screenshotPNG/JPEG/WebP; returns image_base64 + receipt
pdfPOST /v1/pdfReturns pdf_base64 + receipt
extractPOST /v1/extractTitle, meta, canonical, text, links (non-LLM)

REST smoke

curl -s https://api.agentrenderapi.com/health
curl -s -X POST https://api.agentrenderapi.com/v1/extract \
  -H "Authorization: Bearer $AGENTRENDER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://example.com"}'

Notes

  • Hosted Streamable HTTP MCP is not shipped in this package yet; use stdio as above.
  • Do not commit API keys. Rotate any key that leaks.
  • Support: hello@ via product site / waitlist flow.

License

MIT

Keywords

ai-agents

FAQs

Related posts