Document Tools
Convierte URLs y nombres de capitulo en enlaces clicables
Llama a esta herramienta desde tu código en tres lenguajes.
curl -X POST 'https://api.elysiatools.com/es/api/tools/pdf-link-annotator' \
-H 'Content-Type: application/json' \
-d '{"documentText":"# Guide Overview\nRead https://example.com/docs and jump to [[Chapter 2: API Usage]].\n\n# Chapter 1: Setup\nInstall from https://example.com/setup and continue to Chapter 2: API Usage.\n\n# Chapter 2: API Usage\nAPI details: https://example.com/api\nReturn to [[Chapter 1: Setup]].","pageSize":"A4","landscape":false,"fontSize":12,"lineHeight":1.45,"margin":42,"linkChapterNames":true}'Envía una petición POST con tus entradas en JSON. Los parámetros de tipo archivo requieren una subida previa.
POST https://api.elysiatools.com/es/api/tools/pdf-link-annotator| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| documentText | textarea | Sí | — |
| pageSize | select | No | — |
| landscape | checkbox | No | — |
| fontSize | number | No | — |
| lineHeight | number | No | — |
| margin |
Añade esta herramienta a tu servidor Model Context Protocol para que los agentes de IA puedan listarla y llamarla.
Añade este bloque a la configuración de tu cliente MCP:
{
"mcpServers": {
"elysiatools-pdf-link-annotator": {
"name": "pdf-link-annotator",
"description": "Convierte URLs y nombres de capitulo en enlaces clicables",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pdf-link-annotator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Tras conectar al endpoint SSE, lista las herramientas expuestas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoca la herramienta por su id; los argumentos se construyen a partir de sus parámetros:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "pdf-link-annotator",
"arguments": {
"documentText": "# Guide Overview\nRead https://example.com/docs and jump to [[Chapter 2: API Usage]].\n\n# Chapter 1: Setup\nInstall from https://example.com/setup and continue to Chapter 2: API Usage.\n\n# Chapter 2: API Usage\nAPI details: https://example.com/api\nReturn to [[Chapter 1: Setup]].",
"pageSize": "A4",
"landscape": false,
"fontSize": 12,
"lineHeight": 1.45,
"margin": 42,
"linkChapterNames": true
}
}
}| number |
| No |
| — |
| linkChapterNames | checkbox | No | — |
Resultado de archivo
{
"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)"
}¿Dudas o problemas? Contacta con [email protected]