SkillsHooksPromptsAgentsPersonasModelsPoliciesToolsTemplatesBundlesCategoriesStart here
← Tools
To toolcommanddevopsnetworkstable

http-post

HTTP POST / PUT / PATCH / DELETE. Side-effecting.

id tool/http-postv1.0.0function http_post

Signature

ParameterTypeRequiredDescription
urlstringyesURL
methodstringyesPOST / PUT / PATCH / DELETE
bodystringnoRequest body
headersobjectnoRequest headers
returnsobject{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.