@@ -32,14 +32,17 @@ var (
32
32
mcp .Description ("Query to be executed" ),
33
33
),
34
34
mcp .WithString ("start_time" ,
35
- mcp .Description ("[Optional] Start timestamp for the query to be executed at. Must be either Unix timestamp or RFC3339. Defaults to 5m ago." ),
35
+ mcp .Description ("[Optional] Start timestamp for the query to be executed at." +
36
+ " Must be either Unix timestamp or RFC3339. Defaults to 5m ago." ),
36
37
),
37
38
mcp .WithString ("end_time" ,
38
39
mcp .Required (),
39
- mcp .Description ("[Optional] End timestamp for the query to be executed at. Must be either Unix timestamp or RFC3339. Defaults to current time." ),
40
+ mcp .Description ("[Optional] End timestamp for the query to be executed at." +
41
+ " Must be either Unix timestamp or RFC3339. Defaults to current time." ),
40
42
),
41
43
mcp .WithString ("step" ,
42
- mcp .Description ("[Optional] Query resolution step width in duration format or float number of seconds. It will be set automatically if unset." ),
44
+ mcp .Description ("[Optional] Query resolution step width in duration format or float number of seconds." +
45
+ " It will be set automatically if unset." ),
43
46
),
44
47
)
45
48
@@ -50,11 +53,14 @@ var (
50
53
mcp .Description ("Series matchers" ),
51
54
),
52
55
mcp .WithString ("start_time" ,
53
- mcp .Description ("[Optional] Start timestamp for the query to be executed at. Must be either Unix timestamp or RFC3339. Defaults to 5m ago." ),
56
+ mcp .Description ("[Optional] Start timestamp for the query to be executed at." +
57
+ " Must be either Unix timestamp or RFC3339. Defaults to 5m ago." ),
54
58
),
55
59
mcp .WithString ("end_time" ,
56
60
mcp .Required (),
57
- mcp .Description ("[Optional] End timestamp for the query to be executed at. Must be either Unix timestamp or RFC3339. Defaults to current time." ),
61
+ mcp .Description ("[Optional] End timestamp for the query to be executed at." +
62
+ " Must be either Unix timestamp or RFC3339. Defaults to current time." ),
63
+ ),
58
64
),
59
65
)
60
66
0 commit comments