Document Tools
Experimente com configurações de tipografia: espaçamento entre linhas, espaçamento, alinhamento e recuo
Chame esta ferramenta a partir do seu código em três idiomas.
curl -X POST 'https://api.elysiatools.com/pt/api/tools/pdf-typography-playground' \
-H 'Content-Type: application/json' \
-d '{"content":"Typography is the art and technique of arranging type to make written language legible, readable, and appealing when displayed.\n\nThe arrangement of type involves selecting typefaces, point sizes, line lengths, line-spacing (leading), and letter-spacing (tracking), and adjusting the space between pairs of letters (kerning).\n\nGood typography creates a visual hierarchy that guides the reader through the content. It establishes tone and mood, enhances readability, and communicates the intended message effectively.","fontSize":12,"fontWeight":"normal","lineHeight":1.5,"paragraphSpacingBefore":0,"paragraphSpacingAfter":12,"textAlign":"left","firstLineIndent":0,"leftIndent":0,"rightIndent":0,"letterSpacing":0,"wordSpacing":0,"showBaseline":false,"showGrid":false,"showBorder":false,"showHeader":false,"headerText":"Document Header","headerAlignment":"center","showFooter":false,"footerText":"Page {page} of {total}","footerAlignment":"center"}'Envie uma requisição POST com suas entradas em JSON. Parâmetros do tipo arquivo exigem upload prévio.
POST https://api.elysiatools.com/pt/api/tools/pdf-typography-playground| Nome | Tipo | Obrigatório | Descrição |
|---|---|---|---|
| content | textarea | Sim | — |
| fontSize | number | Não | — |
| fontWeight | select | Não | — |
| lineHeight | number | Não | — |
| paragraphSpacingBefore | number | Não | — |
| paragraphSpacingAfter | number | Não | — |
| textAlign | select | Não | — |
| firstLineIndent | number | Não | — |
| leftIndent | number | Não | — |
| rightIndent | number | Não | — |
| letterSpacing | number | Não | — |
| wordSpacing | number | Não | — |
| showBaseline | checkbox | Não | — |
| showGrid | checkbox | Não | — |
| showBorder | checkbox | Não | — |
| showHeader | checkbox | Não | — |
| headerText | text | Não | — |
| headerAlignment | select | Não | — |
| showFooter | checkbox | Não | — |
| footerText | text | Não | — |
| footerAlignment | select | Não | — |
Resultado de arquivo
{
"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)"
}Adicione esta ferramenta ao seu servidor Model Context Protocol para que agentes de IA possam listá-la e chamá-la.
Adicione este bloco à configuração do seu cliente MCP:
{
"mcpServers": {
"elysiatools-pdf-typography-playground": {
"name": "pdf-typography-playground",
"description": "Experimente com configurações de tipografia: espaçamento entre linhas, espaçamento, alinhamento e recuo",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pdf-typography-playground",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Após conectar ao endpoint SSE, liste as ferramentas expostas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoque a ferramenta pelo seu id; os argumentos são construídos a partir de seus parâmetros:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "pdf-typography-playground",
"arguments": {
"content": "Typography is the art and technique of arranging type to make written language legible, readable, and appealing when displayed.\n\nThe arrangement of type involves selecting typefaces, point sizes, line lengths, line-spacing (leading), and letter-spacing (tracking), and adjusting the space between pairs of letters (kerning).\n\nGood typography creates a visual hierarchy that guides the reader through the content. It establishes tone and mood, enhances readability, and communicates the intended message effectively.",
"fontSize": 12,
"fontWeight": "normal",
"lineHeight": 1.5,
"paragraphSpacingBefore": 0,
"paragraphSpacingAfter": 12,
"textAlign": "left",
"firstLineIndent": 0,
"leftIndent": 0,
"rightIndent": 0,
"letterSpacing": 0,
"wordSpacing": 0,
"showBaseline": false,
"showGrid": false,
"showBorder": false,
"showHeader": false,
"headerText": "Document Header",
"headerAlignment": "center",
"showFooter": false,
"footerText": "Page {page} of {total}",
"footerAlignment": "center"
}
}
}Dúvidas ou problemas? Contate [email protected]