http-post
HTTP POST / PUT / PATCH / DELETE. Side-effecting.
id tool/http-postv1.0.0function http_post
Signature
| Parameter | Type | Required | Description |
|---|---|---|---|
url | string | yes | URL |
method | string | yes | POST / PUT / PATCH / DELETE |
body | string | no | Request body |
headers | object | no | Request headers |
| returns | object | {status, headers, body}. |
Tool definition for the model
{
"name": "http_post",
"description": "Perform a side-effecting HTTP request.",
"input_schema": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "URL"
},
"method": {
"type": "string",
"description": "POST / PUT / PATCH / DELETE"
},
"body": {
"type": "string",
"description": "Request body"
},
"headers": {
"type": "object",
"description": "Request headers"
}
},
"required": [
"url",
"method"
]
}
}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.