create_browser_monitor
Set up browser-based Synthetics monitors to track website performance by specifying URLs, check frequency, and monitoring locations via the New Relic MCP Server.
Instructions
Create a new browser-based Synthetics monitor
Input Schema
Name | Required | Description | Default |
---|---|---|---|
frequency | Yes | Check frequency in minutes | |
locations | Yes | Location codes for monitoring | |
name | Yes | Name of the monitor | |
target_account_id | No | Optional New Relic account ID | |
url | Yes | URL to monitor |
Input Schema (JSON Schema)
{
"properties": {
"frequency": {
"description": "Check frequency in minutes",
"enum": [
1,
5,
10,
15,
30,
60
],
"type": "number"
},
"locations": {
"description": "Location codes for monitoring",
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"description": "Name of the monitor",
"type": "string"
},
"target_account_id": {
"description": "Optional New Relic account ID",
"type": "string"
},
"url": {
"description": "URL to monitor",
"type": "string"
}
},
"required": [
"name",
"url",
"frequency",
"locations"
],
"type": "object"
}