Robots Compliance Scrape Workflow MCP Server
An MCP server for AI-agent web scraping that enforces robots.txt compliance and requires user confirmation of scrape plans, packaging scraped data with provenance evidence.
README
Robots Compliance Scrape Workflow — MCP Server
An MCP server that brackets AI-agent web scraping with documented robots.txt compliance, an explicit user-confirmed plan, and a single provenance-wrapped data object ready for database loading.
⚠️ What this does and does not certify
check_robots_compliance produces verifiable technical evidence that a
site's robots.txt permits a given user-agent on given paths: the verbatim
applicable directive lines, the file's SHA-256 hash, HTTP status, and a UTC
fetch timestamp. It does not certify legality. robots.txt is a voluntary
convention (RFC 9309), not a contract or a license. Terms of Service,
copyright, and data-protection law (GDPR/CCPA) apply independently — every
tool response repeats this disclaimer so it travels with the data.
Architecture
The server does not drive the browser. The AI agent (e.g., Claude with the Claude-in-Chrome MCP tools) performs the dynamic navigation between the server's gates:
User request
│
▼
[1] check_robots_compliance ──► verdict + evidence (check_id)
│ └── denied? STOP.
▼
Agent confirms with the user in chat:
navigation steps · scrape scope · exclusions ·
max pages · rate limit · output format · output schema
│
▼
[2] create_scrape_plan(check_id, ..., user_confirmed=True) ──► plan_id
│ (rejects unconfirmed plans, denied verdicts, unknown check_ids;
│ enforces robots.txt Crawl-delay as the rate-limit floor)
▼
Agent executes the plan with browser tools (Claude in Chrome):
navigate → wait for JS render → extract fields → paginate
│
▼
[3] package_results(plan_id, records) ──► ONE data object:
{ data, schema, provenance{robots evidence, plan, pages},
validation_issues, warnings }
Install & run
pip install mcp httpx
python server.py # stdio transport
Claude Desktop / Claude Code config
{
"mcpServers": {
"robots-compliance-scraper": {
"command": "python",
"args": ["/absolute/path/to/server.py"]
}
}
}
Tools
check_robots_compliance(site_url, user_agent="ClaudeBot", target_paths=["/"])
Fetches /robots.txt, evaluates each target path per RFC 9309, and returns:
verdict (allowed | partially_allowed | denied | allowed_no_robots |
indeterminate), per-path results, the verbatim applicable user-agent group,
SHA-256 of the file, any Crawl-delay, and the legal disclaimer.
create_scrape_plan(check_id, navigation_steps, scope_description, output_format, output_schema, max_pages, min_delay_seconds, user_confirmed, exclusions)
Gated: requires a passing check_id and user_confirmed=True. The agent must
present the full plan to the user in chat and get explicit approval before
setting that flag. output_format is chosen per run: json_object, jsonl,
or sql_rows. The effective delay is max(min_delay_seconds, Crawl-delay).
package_results(plan_id, records, pages_visited, warnings)
Validates records against the plan's schema (reports missing/unexpected
fields per record), renders the chosen format, and returns a single
scrape_result_v1 object embedding the compliance evidence and plan as
provenance — load it into your database and transform downstream.
Example data object (abridged)
{
"object_type": "scrape_result_v1",
"record_count": 2,
"output_format": "sql_rows",
"data": { "records": [...], "columns": ["price", "title"], "rows": [[1.5, "A"], ...] },
"provenance": {
"site_url": "https://example.com",
"pages_visited": ["https://example.com/js/"],
"scrape_plan": { "plan_id": "plan_ab12...", "navigation_steps": [...], ... },
"robots_compliance": {
"verdict": "allowed",
"evidence": {
"applicable_group_verbatim": ["User-agent: *", "Allow: /"],
"robots_txt_sha256": "05a5baaa...",
"crawl_delay_seconds": 5.0
}
}
},
"validation_issues": [],
"legal_disclaimer": "robots.txt compliance is a technical/etiquette signal, not legal consent. ..."
}
Agent etiquette baked into every plan
- Honor
Crawl-delay; default floor 2s between page loads - Hard page cap per run (
max_pages, default 25) - No logins, paywall bypass, or CAPTCHA solving
- Scope + exclusions confirmed by the user before any navigation
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。