Agenty
Web scraping, crawling, and change detection with AI
Ads
Overview
Agenty AI exposes a Model Context Protocol (MCP) server that gives AI assistants like Claude, Cursor, and any MCP-compatible client direct access to browser automation tools. You can capture screenshots, generate PDFs, scrape web pages, extract structured data, convert pages to Markdown and more using LLM models In this article, I will covers how to connect to the Agenty’s MCP server and how to use each available tool. - An Agenty AI account and API key - An MCP-compatible client such as Claude Desktop, Cursor, Windsurf, or any tool that supports the Model Context Protocol - Node.js 18 or later if you are using the CLI or a local configuration file
Installation
Installation instructions are not available yet.
Configuration
{
"mcpServers": {
"agenty": {
"url": "https://api.agenty.ai/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Capabilities
- Convert pages to Markdown
Ask to convert a URL or raw HTML into clean, readable Markdown with the `markdown` tool for LLM-friendly content.
- Capture screenshots
Use `screenshot` to capture full-page or clipped PNG/JPEG images with custom viewports and device emulation.
- Scrape rendered HTML
Use `scrape` to get the full rendered HTML of JavaScript-heavy pages after dynamic content loads.
- Extract structured data
Use `extract` to pull specific fields like prices, headlines, or reviews via CSS selectors or XPath.
- Generate PDFs
Use `pdf` to export a page as a PDF with format, margins, landscape, and header/footer options.
- Discover site structure
Use `sitemap` to read a site's sitemap.xml and return all discovered URLs, with exclusion patterns.
Tags
- web-scraping
- browser-automation
- ai-agent
Related MCP servers
Skyvern
OfficialAI-powered browser automation MCP server — navigate sites, fill forms, extract data, and handle logins via Claude Code CLI
Firecrawl
OfficialExtract web data with Firecrawl
Apify
OfficialOfficial Apify MCP server for AI agents to run Actors, extract website data, and automate web scraping and crawling workflows.
Bright Data
OfficialDiscover, extract, and interact with the web - one interface powering automated access across the public internet.