Skip to main content
Glama

read_cv

Read and display your current LaTeX-formatted CV/resume content for review and editing within the CV Resume Builder MCP server.

Instructions

Read current CV (LaTeX)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function that reads the cv.tex file from REPO_PATH and returns its content as TextContent. Handles case where file does not exist.
    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}")]
  • Tool registration in list_tools(), defining name, description, and empty input schema.
    Tool( name="read_cv", description="Read current CV (LaTeX)", inputSchema={ "type": "object", "properties": {} } ),
  • Dispatch in call_tool() that invokes the read_cv handler when the tool name matches.
    elif name == "read_cv": return await read_cv()
  • Input schema definition for the read_cv tool (empty properties, no required inputs).
    inputSchema={ "type": "object", "properties": {} }

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