Skip to main content
Glama

read_wins

Extract achievement data from wins.md files to populate CVs and resumes with project accomplishments and professional milestones.

Instructions

Read wins.md achievements file

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The main handler function that reads the 'wins.md' file from the repository path (REPO_PATH) and returns its content formatted as TextContent, or a message if the file does not exist.
    async def read_wins() -> list[TextContent]: """Read the wins.md file.""" wins_path = Path(REPO_PATH) / "wins.md" if not wins_path.exists(): return [TextContent(type="text", text="No wins.md found")] content = wins_path.read_text() return [TextContent(type="text", text=f"Achievements:\n\n{content}")]
  • The tool schema definition in list_tools(), specifying the name, description, and empty input schema (no parameters required).
    name="read_wins", description="Read wins.md achievements file", inputSchema={ "type": "object", "properties": {} } ), Tool(
  • The registration/dispatch logic in the @app.call_tool() handler that calls the read_wins function when the tool name matches.
    elif name == "read_wins": return await read_wins()

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