list_templates
Browse available LaTeX resume templates to select a design for creating professional resumes with the LaTeX Resume MCP server.
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-440 (handler)The handler function for the 'list_templates' MCP tool. It is registered via the @mcp.tool() decorator and returns a JSON object listing the available resume templates with their 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)
- src/latex_resume_mcp/server.py:429-429 (registration)The @mcp.tool() decorator registers the list_templates function as an MCP tool.@mcp.tool()