http-fetch
HTTP GET. Returns body and status.
id tool/http-fetchv1.0.0function http_fetch
Signature
| Parameter | Type | Required | Description |
|---|---|---|---|
url | string | yes | URL to fetch |
headers | object | no | Optional request headers |
| returns | object | {status, headers, body}. |
Tool definition for the model
{
"name": "http_fetch",
"description": "Perform an HTTP GET.",
"input_schema": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "URL to fetch"
},
"headers": {
"type": "object",
"description": "Optional request headers"
}
},
"required": [
"url"
]
}
}Used by
- agent/runbook-executor — Runbook Executor
Author convergent-systems-key. Source convergent-systems-co/agent-atoms (original ↗). License Apache-2.0. Re-typed from tool-definition by scripts/migrate-policy-tool.py.