apollo-pdf-creator
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_pdfA | Render a document spec to a PDF and return metadata plus the inline file. Args:
spec: The document spec (schema v1); see the |
| validate_specA | Validate a document spec without rendering it. With |
| from_markdownA | Convert Markdown text to a PDF and return metadata plus the inline file. Args:
markdown: Markdown source (headings, paragraphs, lists, tables, code,
blockquotes, rules).
title: Document title; also names the default output file.
author: Document author. Defaults to the configured |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| make-pdf | Compose and render a document spec with apollo-pdf-creator. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| theme_list | Every built-in theme with its label and font family. |
| demo_list | The names of the bundled example specs. |
| schema | A concise reference for every document spec key and block type. |
TDQS
Scored across 3 tools
Each tool serves a distinct purpose: validate_spec checks spec correctness, create_pdf renders a spec to PDF, and from_markdown converts Markdown to PDF. There is no overlap in functionality, making tool selection unambiguous.
Two tools follow a clear verb_noun pattern (validate_spec, create_pdf), but from_markdown deviates by using a prepositional prefix. The inconsistency is minor and does not hinder readability.
With only 3 tools, the server is tightly scoped to its core purpose of PDF creation. Each tool fills a necessary role, and the count falls within the ideal range for a focused server.
The server covers validation, spec-based PDF generation, and Markdown conversion, which are the essential workflows for a PDF creator. A minor gap is the lack of a tool for inspecting or managing generated PDFs, but this does not break core functionality.