You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/radar/src/tools/radar.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -267,9 +267,9 @@ export function registerRadarTools(agent: RadarMCP) {
267
267
268
268
agent.server.tool(
269
269
'get_http_requests_data',
270
-
'Retrieve HTTP request trends. Provide either a `dateRange`, or both `dateStart` and `dateEnd`, to define the time window. '+
270
+
'Retrieve HTTP traffic request trends. Provide either a `dateRange`, or both `dateStart` and `dateEnd`, to define the time window. '+
271
271
'Use arrays to compare multiple filters — the array index determines which series each filter value belongs to.'+
272
-
'For each filter series, you must provide a corresponding `dateRange`, or a `dateStart`/`dateEnd` pair. For parsing the results here are some suggestions: Analyze the data if the response is a summary, If the response is a timeseries visualize the data',
272
+
'For each filter series, you must provide a corresponding `dateRange`, or a `dateStart`/`dateEnd` pair. If the user asks for one statistic related to device type, bot traffic, ip, tls or http version or protocol use summary parameter, otherwise use timeseries or timeseries groups if they ask for breakdown per some dimension. For parsing the results here are some suggestions: Analyze the data if the response is a summary, If the response is a timeseries visualize, the data appropriately, but do not use pie charts. ',
273
273
{
274
274
dateRange: DateRangeArrayParam.optional(),
275
275
dateStart: DateStartArrayParam.optional(),
@@ -329,7 +329,7 @@ export function registerRadarTools(agent: RadarMCP) {
329
329
'get_l7_attack_data',
330
330
'Retrieve L7 app attack trends. Provide either a `dateRange`, or both `dateStart` and `dateEnd`, to define the time window. '+
331
331
'Use arrays to compare multiple filters — the array index determines which series each filter value belongs to.'+
332
-
'For each filter series, you must provide a corresponding `dateRange`, or a `dateStart`/`dateEnd` pair.',
332
+
'For each filter series, you must provide a corresponding `dateRange`, or a `dateStart`/`dateEnd` pair. For each filter series, you must provide a corresponding `dateRange`, or a `dateStart`/`dateEnd` pair. If the user asks for one statistic related to ip, or http version or protocol or mitigation product, use summary parameter, otherwise use timeseries or timeseries groups if they ask for breakdown per some dimension. For parsing the results here are some suggestions: Analyze the data if the response is a summary, If the response is a timeseries, visualize the data appropriately, but do not use pie charts. ',
0 commit comments