list_templates
Browse available LaTeX resume templates to select a design for creating or updating your professional resume document.
Instructions
List available resume templates. Returns the names and descriptions of built-in LaTeX resume templates.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/latex_resume_mcp/server.py:429-441 (handler)The handler function for the 'list_templates' tool. It is decorated with @mcp.tool(), which handles registration and schema definition via the docstring. Returns a JSON object listing available templates: modern, classic, minimal with descriptions.@mcp.tool() def list_templates() -> str: """ List available resume templates. Returns the names and descriptions of built-in LaTeX resume templates. """ templates = { "modern": "Clean, professional design with color accents and structured formatting", "classic": "Traditional resume format with clear sections and horizontal rules", "minimal": "Simple, no-frills layout focusing on content" } return json.dumps(templates, indent=2)