post_data
Send HTTP POST requests to a specified URL with custom data payloads using a tool on the Violett MCP Server to efficiently transmit information between systems.
Instructions
Send data via HTTP POST request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | Data to send in POST body | |
url | Yes | URL to send POST request to |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"description": "Data to send in POST body",
"type": "object"
},
"url": {
"description": "URL to send POST request to",
"type": "string"
}
},
"required": [
"url",
"data"
],
"type": "object"
}