Skip to main content
Glama

read_cv

Retrieve your current LaTeX-formatted CV for review or editing within the CV Resume Builder system.

Instructions

Read current CV (LaTeX)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The main handler function for the 'read_cv' tool. It reads the content of the 'cv.tex' file from the configured REPO_PATH and returns it as TextContent. If the file does not exist, returns an error message.
    async def read_cv() -> list[TextContent]: """Read the current CV file.""" cv_path = Path(REPO_PATH) / "cv.tex" if not cv_path.exists(): return [TextContent(type="text", text="CV file not found")] content = cv_path.read_text() return [TextContent(type="text", text=f"Current CV:\n\n{content}")]
  • The tool schema definition in list_tools(), including name, description, and empty inputSchema (no parameters required).
    Tool( name="read_cv", description="Read current CV (LaTeX)", inputSchema={ "type": "object", "properties": {} } ),
  • The dispatch/registration in the call_tool() handler that routes calls to the read_cv function.
    elif name == "read_cv": return await read_cv()

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/eyaab/cv-resume-builder-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server