Converts HTML or Markdown into PDFs through a remote API at pdf-generator.api.klymax402.com, with support for custom page sizes, margins, and layout options. The server uses x402 USDC micropayments, meaning each PDF generation costs a small amount of cryptocurrency. It's built as an MCP server that connects over server-sent events (SSE), designed for AI agents that need to produce formatted documents programmatically. Reach for this when you're building workflows that generate reports, invoices, or documentation from structured content and you want to handle the PDF rendering remotely rather than spinning up your own conversion pipeline.
Public tool metadata for what this MCP can expose to an agent.
get_statusReturns service status / healthReturns service status / health
No parameter schema in public metadata yet.
add_watermarkAdds a text or an image watermark to PDF document from base64 string or a remote URL.1 paramsAdds a text or an image watermark to PDF document from base64 string or a remote URL.
requestBodyobjectencrypt_documentEncrypts a PDF document from base64 string or a remote URL.1 paramsEncrypts a PDF document from base64 string or a remote URL.
requestBodyobjectdecrypt_documentDecrypts an encrypted PDF document from base64 string or a remote URL.1 paramsDecrypts an encrypted PDF document from base64 string or a remote URL.
requestBodyobjectoptimize_documentOptimizes the size of a PDF document from base64 string or a remote URL.1 paramsOptimizes the size of a PDF document from base64 string or a remote URL.
requestBodyobjectmake_accessibleAdds accessibility tags to a PDF document from base64 string or a remote URL.1 paramsAdds accessibility tags to a PDF document from base64 string or a remote URL.
requestBodyobjectextract_form_fieldsExtracts form fields and their metadata from a PDF document using base64 string or a remote URL.1 paramsExtracts form fields and their metadata from a PDF document using base64 string or a remote URL.
requestBodyobjectfill_form_fieldsFills form fields in a PDF document with provided data from base64 string or a remote URL.1 paramsFills form fields in a PDF document with provided data from base64 string or a remote URL.
requestBodyobjectget_templatesReturns a list of templates available for the authenticated workspace5 paramsReturns a list of templates available for the authenticated workspace
namestringpagenumbertagsstringaccessstringprivate · organization · default: per_pagenumbercreate_templateCreates a new template. If template configuration is not specified in the request body then an empty template is created. Template is placed to the workspace specified in authentication params. Template configuration must be sent in the request body.1 paramsCreates a new template. If template configuration is not specified in the request body then an empty template is created. Template is placed to the workspace specified in authentication params. Template configuration must be sent in the request body.
requestBodyobjectget_template_schemaReturns Template JSON Schema which defines the structure of the Template Definition.Returns Template JSON Schema which defines the structure of the Template Definition.
No parameter schema in public metadata yet.
import_templateCreates a template from existing PDF1 paramsCreates a template from existing PDF
requestBodyobjectvalidate_templateValidates if the provided template configuration matches the template JSON schema.1 paramsValidates if the provided template configuration matches the template JSON schema.
requestBodyobjectget_templateReturns template configuration1 paramsReturns template configuration
templateIdnumberupdate_templateUpdates template configuration. The template configuration for pages and layout must be complete as the entire configuration is replaced and not merged.2 paramsUpdates template configuration. The template configuration for pages and layout must be complete as the entire configuration is replaced and not merged.
templateIdnumberrequestBodyobjectdelete_templateDeletes the template from workspace1 paramsDeletes the template from workspace
templateIdnumberget_template_dataReturns all data fields used in the template. Returns structured JSON data that can be used to check which data fields are used in template or autogenerate sample data.1 paramsReturns all data fields used in the template. Returns structured JSON data that can be used to check which data fields are used in template or autogenerate sample data.
templateIdnumbercopy_templateCreates a copy of a template to the workspace specified in authentication parameters.2 paramsCreates a copy of a template to the workspace specified in authentication parameters.
templateIdnumberrequestBodyobjectopen_editorReturns an unique URL which you can use to redirect your user to the editor from your application or use the generated URL as iframe source to show the editor within your application. When using iframe, make sure that your browser allows third-party cookies.2 paramsReturns an unique URL which you can use to redirect your user to the editor from your application or use the generated URL as iframe source to show the editor within your application. When using iframe, make sure that your browser allows third-party cookies.
templateIdnumberrequestBodyobjectlist_template_versionsReturns a paginated list of template versions for the specified template.3 paramsReturns a paginated list of template versions for the specified template.
pagenumberper_pagenumbertemplateIdnumberget_template_versionReturns the template definition of the specified version.2 paramsReturns the template definition of the specified version.
templateIdnumbertemplateVersionnumberdelete_template_versionDeletes the specified template version. Production versions cannot be deleted.2 paramsDeletes the specified template version. Production versions cannot be deleted.
templateIdnumbertemplateVersionnumberpromote_template_versionPromotes the specified template version to production. Only one version can be production at a time.2 paramsPromotes the specified template version to production. Only one version can be production at a time.
templateIdnumbertemplateVersionnumberget_documentsReturns a list of generated documents created by authorized workspace and stored in PDF Generator API. If master user is specified as workspace in JWT then all documents created in the organization are returned. NB! This endpoint returns only documents generated using the outp...5 paramsReturns a list of generated documents created by authorized workspace and stored in PDF Generator API. If master user is specified as workspace in JWT then all documents created in the organization are returned. NB! This endpoint returns only documents generated using the outp...
pagenumberend_datestringper_pagenumberstart_datestringtemplate_idnumberget_documentReturns document stored in the Document Storage1 paramsReturns document stored in the Document Storage
publicIdstringdelete_documentDelete document from the Document Storage1 paramsDelete document from the Document Storage
publicIdstringgenerate_documentMerges template with data and returns base64 encoded document or a public URL to a document. NB! When the public URL option is used, the document is stored for 30 days and automatically deleted.1 paramsMerges template with data and returns base64 encoded document or a public URL to a document. NB! When the public URL option is used, the document is stored for 30 days and automatically deleted.
requestBodyobjectgenerate_document_asyncMerges template with data as asynchronous job and makes POST request to callback URL defined in the request. Request uses the same format as response of synchronous generation endpoint. The job id is also added to the callback request as header PDF-API-Job-Id *Example response...1 paramsMerges template with data as asynchronous job and makes POST request to callback URL defined in the request. Request uses the same format as response of synchronous generation endpoint. The job id is also added to the callback request as header PDF-API-Job-Id *Example response...
requestBodyobjectgenerate_document_batchAllows to merge multiple templates with data and returns base64 encoded document or public URL to a document. NB! When the public URL option is used, the document is stored for 30 days and automatically deleted.1 paramsAllows to merge multiple templates with data and returns base64 encoded document or public URL to a document. NB! When the public URL option is used, the document is stored for 30 days and automatically deleted.
requestBodyobjectgenerate_document_batch_asyncMerges template with data as asynchronous job and makes POST request to callback URL defined in the request. Request uses the same format as response of synchronous generation endpoint. The job id is also added to the callback request as header PDF-API-Job-Id *Example response...1 paramsMerges template with data as asynchronous job and makes POST request to callback URL defined in the request. Request uses the same format as response of synchronous generation endpoint. The job id is also added to the callback request as header PDF-API-Job-Id *Example response...
requestBodyobjectget_async_job_statusReturns status of an async job1 paramsReturns status of an async job
jobIdstringget_workspacesReturns all workspaces in the organization2 paramsReturns all workspaces in the organization
pagenumberper_pagenumbercreate_workspaceCreates a regular workspace with identifier specified in the request.1 paramsCreates a regular workspace with identifier specified in the request.
requestBodyobjectget_workspaceReturns workspace information for the workspace identifier specified in the request.1 paramsReturns workspace information for the workspace identifier specified in the request.
workspaceIdentifierstringdelete_workspaceDelete workspace. Only regular workspaces can be deleted.1 paramsDelete workspace. Only regular workspaces can be deleted.
workspaceIdentifierstringconvert_html_to_pdfConverts HTML content to PDF1 paramsConverts HTML content to PDF
requestBodyobjectconvert_url_to_pdfConverts public URL to PDF1 paramsConverts public URL to PDF
requestBodyobjectget_formsReturns a list of forms available for the organization2 paramsReturns a list of forms available for the organization
pagenumberper_pagenumbercreate_formCreates a new form based on the configuration sent in the request body.1 paramsCreates a new form based on the configuration sent in the request body.
requestBodyobjectimport_formCreates a new form based on editable PDF1 paramsCreates a new form based on editable PDF
requestBodyobjectget_formReturns form configuration1 paramsReturns form configuration
formIdnumberupdate_formUpdates the form configuration. The form configuration must be complete as the entire configuration is replaced and not merged.2 paramsUpdates the form configuration. The form configuration must be complete as the entire configuration is replaced and not merged.
formIdnumberrequestBodyobjectdelete_formDeletes the form with specified id1 paramsDeletes the form with specified id
formIdnumbershare_formCreates an unique sharing URL to collect form data1 paramsCreates an unique sharing URL to collect form data
formIdnumbergenerate_qr_codeCreates a QR code based on the configuration1 paramsCreates a QR code based on the configuration
requestBodyobjectcreate_einvoiceThis endpoint transforms a JSON payload into an XML-based e-invoice that is fully compliant with the European EN 16931 standard. The generated output can be formatted in either UBL (Universal Business Language) or CII (Cross-Industry Invoice) syntax, ensuring interoperability...1 paramsThis endpoint transforms a JSON payload into an XML-based e-invoice that is fully compliant with the European EN 16931 standard. The generated output can be formatted in either UBL (Universal Business Language) or CII (Cross-Industry Invoice) syntax, ensuring interoperability...
requestBodyobjectcreate_xrechnung_einvoiceThis endpoint transforms a JSON payload into an XML-based XRechnung e-invoice that is fully compliant with the European EN 16931 standard. The generated output follows the XRechnung format and can be formatted in either UBL (Universal Business Language) or CII (Cross-Industry...1 paramsThis endpoint transforms a JSON payload into an XML-based XRechnung e-invoice that is fully compliant with the European EN 16931 standard. The generated output follows the XRechnung format and can be formatted in either UBL (Universal Business Language) or CII (Cross-Industry...
requestBodyobjectcreate_facturx_einvoiceThis endpoint transforms a JSON payload a Factur-X e-invoice that is fully compliant with the European EN 16931 standard. The generated output is always a PDF document, embedding a structured CII (Cross-Industry Invoice) XML according to the Factur-X format into a human-readab...1 paramsThis endpoint transforms a JSON payload a Factur-X e-invoice that is fully compliant with the European EN 16931 standard. The generated output is always a PDF document, embedding a structured CII (Cross-Industry Invoice) XML according to the Factur-X format into a human-readab...
requestBodyobjectget_einvoice_schemaReturns e-invoice JSON schema which defines the structure of the e-invoice.Returns e-invoice JSON schema which defines the structure of the e-invoice.
No parameter schema in public metadata yet.
csoai-org/pdf-document-mcp
xt765/mcp-document-converter
io.github.xjtlumedia/markdown-formatter
io.github.ai-aviate/better-notion
suekou/mcp-notion-server
meterlong/mcp-doc