DMCA takedown & host reveal for AI agents: who hosts an infringing URL, even behind Cloudflare.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"net-lawyerd-takedown": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
DMCA takedown & host reveal for AI agents: who hosts an infringing URL, even behind Cloudflare.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / cloud
Persistent memory using a knowledge graph
An autonomous agent that conducts deep research on any data using any LLM providers
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Dynamic problem-solving through sequential thought chains
MCP Security Weekly
Get CVE alerts and security updates for net.lawyerd/takedown and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The first DMCA takedown & host-reveal MCP server. Connect it to Claude (or any MCP client) and your AI agent can answer: “who really hosts this infringing site — even behind Cloudflare — where does the DMCA/abuse notice go, and how do I actually get it taken down?”
Hosted and operated by Lawyerd, a counsel-led content-removal practice. This repository is the public home and documentation for the server; it is a remote, hosted MCP server — there is nothing to install or run yourself. Just point your agent at the endpoint.
https://mcp.lawyerd.net/takedown (Streamable HTTP)https://mcp.lawyerd.net/mcpnet.lawyerd/takedown in the official MCP Registry/.well-known/mcp.jsonAdd the server to Claude Code / Claude Desktop:
claude mcp add --transport http lawyerd https://mcp.lawyerd.net/takedown
Or add it to any MCP client config (mcpServers):
{
"mcpServers": {
"lawyerd": {
"type": "http",
"url": "https://mcp.lawyerd.net/takedown"
}
}
}
Then just ask your assistant, in your own words:
“Someone reposted my photo set and is selling prints at
https://example-infringer.com. Who hosts it and how do I take it down?”
The agent chains the three tools below and hands you a plain-language answer.
resolve_hostLook up who hosts a URL and where a DMCA/abuse notice would go. Identifies the platform, the CDN/proxy in front (e.g. Cloudflare, DDoS-Guard), or the direct hosting provider and its abuse contact. For domains whose real host has already been revealed from behind a proxy, it returns that host immediately; for a domain still hidden behind a proxy it says so honestly — revealing the true host means initiating an abuse report. Read-only; files nothing.
assess_takedownThe plan for a takedown of a specific URL: the route it would follow (host abuse, platform form, or reveal-first), what the rights holder must supply (proof of ownership and a one-time signed attestation), the step-by-step process, and the legal caveats — including 17 U.S.C. §512(f) and scope limits. Read-only; it does not judge the merits of the claim.
start_takedownReturns a secure onboarding link to actually begin a takedown. A human opens it once in a browser to identify themselves, sign the authorization (the one step that legally requires a human), and provide proof of ownership. Nothing is filed by the agent.
// tools/call → resolve_host { "url": "https://example-infringer.com" }
{
"domain": "example-infringer.com",
"frontedBy": "cdn_proxy",
"proxy": { "name": "Cloudflare" },
"realHostHidden": true,
"takedownRoute": "needs_reveal",
"nextStep": "The site is behind Cloudflare — the real host is hidden. Revealing it requires initiating an abuse report; start a takedown to do that."
}
For a domain already revealed, resolve_host returns the real host and its
abuse email directly, with revealSource: "cached_reveal".