
urlDNA MCP Server
Enables security-focused LLM agents like GPT-4.1 and Claude 3 to interact with the urlDNA threat intelligence platform, providing tools for URL scanning, threat detection, and malicious content analysis.
README
urlDNA MCP Server
The urlDNA MCP Server
enables native tool use for security-focused LLM agents like OpenAI GPT-4.1 and Claude 3 Desktop, providing a direct interface to interact with the urlDNA threat intelligence platform via API.
Hosted MCP Server
The urlDNA MCP
server is already hosted and available at:
https://mcp.urldna.io/sse
This server is accessible over Server-Sent Events (SSE) protocol, which supports streaming interactions between LLMs and the backend tools.
You can use it directly with any platform or LLM supporting the mcp
specification (e.g., Claude Desktop, OpenAI GPT-4.1).
Supported Actions
The following tools are exposed by the MCP interface:
Tool | Description |
---|---|
new_scan |
Submit a new scan for a given URL |
get_scan |
Retrieve a scan by ID |
search |
Search scans using text, domain, or filters |
fast_check |
Lightweight phishing detection via content + redirect analysis |
Integration with Claude Desktop (Anthropic MCP)
To integrate the urlDNA MCP server
in Claude Desktop, update your Claude configuration (typically claude.config.json
or equivalent) like so:
{
"mcpServers": {
"urlDNA": {
"command": "python",
"args": [
"<YOUR_PATH>/run.py"
],
"env": {
"authorization": "<urlDNA_API_KEY>"
}
}
}
}
Replace
<YOUR_PATH>
with the actual path torun.py
, and<urlDNA_API_KEY>
with your API key from https://urldna.io.
Once configured, you can prompt Claude with natural language requests like:
"Search in urlDNA for malicious scans with title like paypal"
Claude will automatically call the correct tool and return results from the urlDNA
platform.
Using the MCP Server with OpenAI GPT-4.1 (Python SDK)
from openai import OpenAI
# Initialize OpenAI client (assumes API key is set via env var or config)
client = OpenAI()
response = client.responses.create(
model="gpt-4.1",
input=[
{
"role": "system",
"content": [{"type": "input_text", "text": "You are a cybersecurity analyst using urlDNA."}]
},
{
"role": "user",
"content": [{"type": "input_text", "text": "Search in urlDNA malicious scan with title like paypal"}]
}
],
text={"format": {"type": "text"}},
reasoning={},
tools=[
{
"type": "mcp",
"server_label": "urlDNA",
"server_url": "https://mcp.urldna.io/sse",
"headers": {
"Authorization": "Bearer <URLDNA_API_KEY>"
},
"allowed_tools": ["new_scan", "get_scan", "search", "fast_check"],
"require_approval": "never"
}
],
temperature=0.7,
top_p=1,
max_output_tokens=2048,
store=True
)
print(response.output)
Requirements
- Python 3.9+
Install dependencies:
pip install -r requirements.txt
Contact & Support
For support or API access, visit https://urldna.io or email urldna@urldna.io.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.