MCPcopy Create free account
hub / github.com/ScrapeGraphAI/scrapecraft / remove_url

Function remove_url

backend/app/agents/tools.py:39–45  ·  view source on GitHub ↗

Remove a URL from the scraping pipeline.

(url: str)

Source from the content-addressed store, hash-verified

37
38@tool
39def remove_url(url: str) -> Dict[str, Any]:
40 """Remove a URL from the scraping pipeline."""
41 return {
42 "success": True,
43 "url": url,
44 "message": f"Successfully removed {url} from the pipeline"
45 }
46
47@tool
48def validate_url(url: str) -> Dict[str, Any]:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected