Document Tools
Create PDF bookmarks/outline from chapter-style headings
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/pdf-outline-bookmarks' \
-H 'Content-Type: application/json' \
-d '{"title":"Engineering Handbook","documentText":"# Engineering Handbook\nOverview for team onboarding.\n\n## Chapter 1: Setup\nInstall dependencies and run checks.\n\n### Chapter 1.1: Local Run\nUse npm run dev.\n\n## Chapter 2: Deployment\nDeploy from CI pipeline.\n\n### Chapter 2.1: Rollback\nRollback if smoke tests fail.","pageSize":"A4","landscape":false,"fontSize":12,"lineHeight":1.5,"margin":42}'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-outline-bookmarks| Name | Type | Required | Description |
|---|---|---|---|
| title | text | Yes | — |
| documentText | textarea | Yes | — |
| pageSize | select | No | — |
| landscape | checkbox | No | — |
| fontSize | number | No | — |
| lineHeight |
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-outline-bookmarks": {
"name": "pdf-outline-bookmarks",
"description": "Create PDF bookmarks/outline from chapter-style headings",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pdf-outline-bookmarks",
"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-outline-bookmarks",
"arguments": {
"title": "Engineering Handbook",
"documentText": "# Engineering Handbook\nOverview for team onboarding.\n\n## Chapter 1: Setup\nInstall dependencies and run checks.\n\n### Chapter 1.1: Local Run\nUse npm run dev.\n\n## Chapter 2: Deployment\nDeploy from CI pipeline.\n\n### Chapter 2.1: Rollback\nRollback if smoke tests fail.",
"pageSize": "A4",
"landscape": false,
"fontSize": 12,
"lineHeight": 1.5,
"margin": 42
}
}
}| number |
| No |
| — |
| margin | number | 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)"
}Questions or issues? Contact [email protected]