api_get
Performs a GET request to an API endpoint by specifying the URL and optional headers, enabling direct interaction with web services through the Browser Agent MCP.
Instructions
Perform a GET request to an API endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
headers | No | Request headers | |
url | Yes | API endpoint URL |
Input Schema (JSON Schema)
{
"properties": {
"headers": {
"additionalProperties": {
"type": "string"
},
"description": "Request headers",
"type": "object"
},
"url": {
"description": "API endpoint URL",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}