recent
Pack: feodotracker · Endpoint: https://gateway.pipeworx.io/feodotracker/mcp
Blocklist entries first seen in the last N hours.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
hours | number | no | Default 24, max 720 (30 days). |
Example call
Arguments
{
"hours": 24
}
curl
curl -X POST https://gateway.pipeworx.io/feodotracker/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"recent","arguments":{"hours":24}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('recent', {
"hours": 24
});
More examples
{
"hours": 72
}
Response shape
Always returns: hours, count, results
| Field | Type | Description |
|---|---|---|
hours | number | Number of hours in the lookback window |
count | number | Number of entries first seen within the window |
results | array | Blocklist entries first seen in the time window |
Full JSON Schema
{
"type": "object",
"properties": {
"hours": {
"type": "number",
"description": "Number of hours in the lookback window"
},
"count": {
"type": "number",
"description": "Number of entries first seen within the window"
},
"results": {
"type": "array",
"description": "Blocklist entries first seen in the time window",
"items": {
"type": "object",
"properties": {
"ip_address": {
"type": "string",
"description": "IP address"
},
"port": {
"type": "number",
"description": "Port number"
},
"status": {
"type": "string",
"description": "Status (e.g. online, offline)"
},
"hostname": {
"type": [
"string",
"null"
],
"description": "Associated hostname"
},
"as_number": {
"type": "number",
"description": "Autonomous System number"
},
"as_name": {
"type": "string",
"description": "Autonomous System name"
},
"country": {
"type": "string",
"description": "Country code or name"
},
"first_seen": {
"type": "string",
"description": "ISO timestamp of first observation"
},
"last_online": {
"type": "string",
"description": "ISO timestamp of last online status"
},
"malware": {
"type": "string",
"description": "Associated malware family name"
}
},
"required": [
"ip_address"
]
}
}
},
"required": [
"hours",
"count",
"results"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"feodotracker": {
"url": "https://gateway.pipeworx.io/feodotracker/mcp"
}
}
}
See Getting Started for client-specific install steps.