api_get
Initiate HTTP GET requests to any specified URL using the MCP API Server. Input a URL and optional headers to retrieve data from external APIs with precision and ease.
Instructions
Make an HTTP GET request to the specified URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
headers | No | Optional headers to include in the request | |
url | Yes | The URL to make the GET request to |
Input Schema (JSON Schema)
{
"properties": {
"headers": {
"additionalProperties": {
"type": "string"
},
"description": "Optional headers to include in the request",
"type": "object"
},
"url": {
"description": "The URL to make the GET request to",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}