Document Tools
Fetch a GitHub README and render it to a styled PDF
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/github-readme-to-pdf' \
-H 'Content-Type: application/json' \
-d '{"repository":"https://github.com/meilisearch/meilisearch","branch":"main","readmePath":"README.md","theme":"print","baseFontSize":13,"pageSize":"A4","landscape":false,"printBackground":true,"marginTop":18,"marginBottom":18,"marginLeft":16,"marginRight":16,"waitUntil":"networkidle0","waitTime":0}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/github-readme-to-pdf| Name | Type | Required | Description |
|---|---|---|---|
| repository | text | Yes | — |
| branch | text | No | — |
| readmePath | text | No | — |
| theme | select | No | — |
| baseFontSize | number | No | — |
| pageSize |
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-github-readme-to-pdf": {
"name": "github-readme-to-pdf",
"description": "Fetch a GitHub README and render it to a styled PDF",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=github-readme-to-pdf",
"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": "github-readme-to-pdf",
"arguments": {
"repository": "https://github.com/meilisearch/meilisearch",
"branch": "main",
"readmePath": "README.md",
"theme": "print",
"baseFontSize": 13,
"pageSize": "A4",
"landscape": false,
"printBackground": true,
"marginTop": 18,
"marginBottom": 18,
"marginLeft": 16,
"marginRight": 16,
"waitUntil": "networkidle0",
"waitTime": 0
}
}
}Questions or issues? Contact [email protected]
| select |
| No |
| — |
| landscape | checkbox | No | — |
| printBackground | checkbox | No | — |
| marginTop | number | No | — |
| marginBottom | number | No | — |
| marginLeft | number | No | — |
| marginRight | number | No | — |
| waitUntil | select | No | — |
| waitTime | 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)"
}