Document Tools
Generate a PDF showcasing rectangle, circle, polygon, Bezier curve, and gradient simulation
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/pdf-vector-shapes-demo' \
-H 'Content-Type: application/json' \
-d '{"pageSize":"A4","landscape":false,"showGrid":true,"polygonSides":6,"gradientSteps":40,"backgroundColor":"#F7F9FC","primaryColor":"#2F6FED","secondaryColor":"#13A89E","accentColor":"#F15B3A"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/pdf-vector-shapes-demo| Name | Type | Required | Description |
|---|---|---|---|
| pageSize | select | No | — |
| landscape | checkbox | No | — |
| showGrid | checkbox | No | — |
| polygonSides | number | No | — |
| gradientSteps | number | No | — |
| backgroundColor |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-pdf-vector-shapes-demo": {
"name": "pdf-vector-shapes-demo",
"description": "Generate a PDF showcasing rectangle, circle, polygon, Bezier curve, and gradient simulation",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pdf-vector-shapes-demo",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "pdf-vector-shapes-demo",
"arguments": {
"pageSize": "A4",
"landscape": false,
"showGrid": true,
"polygonSides": 6,
"gradientSteps": 40,
"backgroundColor": "#F7F9FC",
"primaryColor": "#2F6FED",
"secondaryColor": "#13A89E",
"accentColor": "#F15B3A"
}
}
}Questions or issues? Contact [email protected]
| color |
| No |
| — |
| primaryColor | color | No | — |
| secondaryColor | color | No | — |
| accentColor | color | No | — |
File result
{
"filePath": "/public/processing/randomid.ext",
"fileName": "output.ext",
"contentType": "application/octet-stream",
"size": 1024,
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}