inclusio-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| INCLUSIO_CONTENT_DIR | No | Absolute path to the content directory containing LaTeX sources, YAML metadata, and brand assets. |
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 |
|---|---|
| list_docsA | List every document registered in data/meta.yaml with its metadata. |
| audit_pdfA | Audit built PDFs for accessibility conformance with veraPDF. |
| renderA | Render a registered template-driven document to a file on disk. |
| doc_countA | Count the documents registered in data/meta.yaml. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| meta_resource | Return the raw text of data/meta.yaml (project manifest). |
| audit_latest_resource | Return the last audit report JSON (build/.audit/latest.json). Empty JSON object when no audit has run yet. |
| version_resource | Return the engine version and MCP Server Card metadata. |
TDQS
Scored across 4 tools
list_docs and doc_count are the only near-overlap pair, but their descriptions clearly separate a full metadata listing from a cheap count probe. render and audit_pdf target distinct stages of the workflow with no ambiguity.
list_docs and audit_pdf follow a verb_noun pattern, but doc_count reverses the pattern and render is a bare verb without an object. The names are readable and all snake_case, but the imperative convention is not applied consistently.
Four tools is a well-scoped size for a focused document rendering and PDF auditing server. Each tool serves a distinct step or lightweight probe, and doc_count does not feel like unnecessary padding.
The set covers discovery, counting, rendering source, and auditing existing PDFs, but there is no tool to compile rendered LaTeX or Markdown into a PDF, so after render an agent cannot produce the PDF that audit_pdf expects. Document registration/update may be intentionally external, but the missing build/compile step is a significant workflow gap.