MCP server
Use AIScrapeSafe directly from Claude / Cowork (or any MCP client). The server is a thin wrapper over the API and authenticates with your URL API key (create one at /dashboard).
Tools
analyze_url(url, jurisdiction?, purpose?)— the usage-license verdict for a URL.get_license(id)— resolve a registered license by id.list_domains(q?, verdict?)— your checked domains.
Desktop apps (Claude Desktop & Cowork)
Add it as a custom connector by URL — no install required. In Claude Desktop or Cowork, open Settings → Connectors → Add custom connector, then enter:
- Name:
AIScrapeSafe - Remote MCP server URL:
https://aiscrapesafe.opencontrols.ai/mcp?key=ocsk_xxx
Replace ocsk_xxx with your own API key from /dashboard. The key rides in the URL because the connector dialog has no separate auth field; it is only used to call the API on your behalf. Once added, the three tools above appear in the client.
Local / CLI clients (stdio)
For clients that launch a local process (or to run the server yourself), use the stdio package in mcp/:
cd mcp && npm installThen add to your MCP config:
{
"mcpServers": {
"oc-scrapesafe": {
"command": "node",
"args": ["/absolute/path/to/oc-scrapesafe/mcp/index.mjs"],
"env": {
"OC_API_KEY": "ocsk_xxx",
"OC_BASE_URL": "https://aiscrapesafe.opencontrols.ai"
}
}
}
}Full HTTP reference: API docs. The verdict is not legal advice.
