get_recent
Pack: urlhaus · Endpoint: https://gateway.pipeworx.io/urlhaus/mcp
Get a list of recently submitted malware URLs from URLhaus. Useful for monitoring the latest threats.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | no | Number of recent URLs to return (default 10, max 1000). |
Example call
Arguments
{
"limit": 50
}
curl
curl -X POST https://gateway.pipeworx.io/urlhaus/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_recent","arguments":{"limit":50}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_recent', {
"limit": 50
});
Response shape
Always returns: query_status, count, urls
| Field | Type | Description |
|---|---|---|
query_status | string | Status of the query |
count | number | Number of recent URLs returned |
urls | array | List of recently submitted malware URLs |
Full JSON Schema
{
"type": "object",
"properties": {
"query_status": {
"type": "string",
"description": "Status of the query"
},
"count": {
"type": "number",
"description": "Number of recent URLs returned"
},
"urls": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "URLhaus ID"
},
"url": {
"type": "string",
"description": "The malware URL"
},
"url_status": {
"type": "string",
"description": "Status of the URL"
},
"date_added": {
"type": "string",
"description": "Date when URL was added"
},
"threat": {
"type": "string",
"description": "Threat category"
},
"tags": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
},
"description": "Associated tags"
},
"urlhaus_reference": {
"type": "string",
"description": "Reference URL on URLhaus"
}
},
"required": [
"id",
"url",
"url_status",
"date_added",
"threat",
"tags",
"urlhaus_reference"
]
},
"description": "List of recently submitted malware URLs"
}
},
"required": [
"query_status",
"count",
"urls"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"urlhaus": {
"url": "https://gateway.pipeworx.io/urlhaus/mcp"
}
}
}
See Getting Started for client-specific install steps.