{
  "markdown": "# CV Forge\n\nForge powerful, ATS-friendly CVs tailored to any job requirement.\n\nAn intelligent MCP (Model Context Protocol) server that analyzes job postings and crafts perfectly-matched CVs.\n\n## Features\n\n- **Parse Job Requirements**: Extract key skills, qualifications, email addresses, and hiring manager names from job postings\n- **Generate Tailored CVs**: Create customized CV content based on user profile and job requirements\n- **Cover Letter Generation**: Generate personalized cover letters tailored to specific job applications\n- **Email Template Creation**: Create professional email templates with automatic email address detection\n- **Complete Application Packages**: Generate CV, cover letter, and email template in one command\n- **PDF by Default**: Automatically generates professional PDF documents when no format is specified\n- **Multiple Output Formats**: Generate documents in PDF (default), HTML, Markdown, and text formats\n- **Professional PDF Generation**: Create publication-ready PDF documents with professional styling\n- **ATS-Friendly**: Optimized for Applicant Tracking Systems with proper keyword placement\n- **Smart Contact Extraction**: Automatically extracts email addresses and hiring manager names from job descriptions\n\n## Star History\n\n[![Star History Chart](https://api.star-history.com/svg?repos=thechandanbhagat/cv-forge&type=date&legend=top-left)](https://www.star-history.com/#thechandanbhagat/cv-forge&type=date&legend=top-left)\n\n## Installation\n\n### Via npm (Recommended)\n\nInstall globally:\n```bash\nnpm install -g cv-forge\n```\n\nOr install locally in your project:\n```bash\nnpm install cv-forge\n```\n\n### From Source\n\n1. Clone this repository\n2. Install dependencies:\n   ```bash\n   npm install\n   ```\n3. Build the project:\n   ```bash\n   npm run build\n   ```\n\n## Usage\n\n### Connecting to Claude Desktop\n\nTo use this MCP server with Claude Desktop, you need to add it to your Claude configuration file.\n\n**Step 1: Install cv-forge**\n```bash\nnpm install -g cv-forge\n```\n\n**Step 2: Find your Claude Desktop config file**\n- **Windows**: `%APPDATA%\\Claude\\claude_desktop_config.json`\n- **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`\n- **Linux**: `~/.config/Claude/claude_desktop_config.json`\n\n**Step 3: Add the MCP server to your config**\n\nFor global installation, add this to your `claude_desktop_config.json` file:\n\n```json\n{\n  \"mcpServers\": {\n    \"cv-forge\": {\n      \"command\": \"cv-forge\"\n    }\n  }\n}\n```\n\nOr if installed locally, specify the full path:\n\n```json\n{\n  \"mcpServers\": {\n    \"cv-forge\": {\n      \"command\": \"node\",\n      \"args\": [\"d:/TopSecret/cv-forge/build/index.js\"],\n      \"cwd\": \"d:/TopSecret/cv-forge\"\n    }\n  }\n}\n```\n\n**Step 4: (Optional) Add environment configuration**\n\nYou can customize the server with environment variables:\n\n```json\n{\n  \"mcpServers\": {\n    \"cv-forge\": {\n      \"command\": \"cv-forge\",\n      \"env\": {\n        \"DEFAULT_OUTPUT_PATH\": \"D:/CV\",\n        \"PDF_BASE_FONT_SIZE\": \"12px\",\n        \"PDF_LINE_HEIGHT\": \"1.4\"\n      }\n    }\n  }\n}\n```\n\n**Step 5: Restart Claude Desktop**\nAfter adding the configuration, restart Claude Desktop application.\n\n**Step 6: Verify Connection**\nIn Claude Desktop, you should see the CV Forge tools available. You can ask Claude to use tools like:\n- \"Parse this job posting for me\"\n- \"Generate a tailored CV based on my profile and this job\"\n- \"Save my CV as a PDF file\"\n\n### Running the MCP Server Standalone (for testing)\n\nYou can also run the server directly for testing:\n```bash\nnpm start\n```\n\nThe server runs on stdio and communicates via the Model Context Protocol.\n\n### Available Tools\n\n#### 1. `parse_job_requirements`\nParses job requirements and extracts key information for CV tailoring.\n\n**Parameters:**\n- `jobTitle` (string, required): The job title/position\n- `company` (string, required): Company name\n- `jobDescription` (string, required): Full job description text\n- `requirements` (array, optional): Specific requirements if separated\n- `preferredSkills` (array, optional): Preferred skills if separated\n- `location` (string, optional): Job location\n- `salaryRange` (string, optional): Salary range if provided\n\n#### 2. `generate_cv_data`\nGenerates tailored CV content based on user profile and job requirements.\n\n**Parameters:**\n- `userProfile` (object, required): Complete user profile information\n- `jobRequirements` (object, required): Job requirements object\n\n**User Profile Structure:**\n```json\n{\n  \"personalInfo\": {\n    \"fullName\": \"John Doe\",\n    \"email\": \"john@example.com\",\n    \"phone\": \"+1-555-0123\",\n    \"location\": \"City, State\",\n    \"linkedIn\": \"linkedin.com/in/johndoe\",\n    \"github\": \"github.com/johndoe\",\n    \"website\": \"johndoe.com\"\n  },\n  \"summary\": \"Professional summary text...\",\n  \"experience\": [\n    {\n      \"jobTitle\": \"Software Engineer\",\n      \"company\": \"Tech Corp\",\n      \"location\": \"City, State\",\n      \"startDate\": \"2020-01\",\n      \"endDate\": \"2023-12\",\n      \"description\": \"Job description...\",\n      \"achievements\": [\n        \"Achievement 1\",\n        \"Achievement 2\"\n      ]\n    }\n  ],\n  \"education\": [\n    {\n      \"degree\": \"Bachelor of Science in Computer Science\",\n      \"institution\": \"University Name\",\n      \"location\": \"City, State\",\n      \"graduationYear\": \"2020\",\n      \"gpa\": \"3.8\",\n      \"honors\": [\"Magna Cum Laude\"]\n    }\n  ],\n  \"skills\": {\n    \"technical\": [\"JavaScript\", \"Python\", \"React\"],\n    \"soft\": [\"Leadership\", \"Communication\"],\n    \"languages\": [\"English\", \"Spanish\"],\n    \"certifications\": [\"AWS Certified\"]\n  },\n  \"projects\": [\n    {\n      \"name\": \"Project Name\",\n      \"description\": \"Project description...\",\n      \"technologies\": [\"React\", \"Node.js\"],\n      \"url\": \"github.com/johndoe/project\"\n    }\n  ]\n}\n```\n\n#### 3. `save_cv_text`\nSaves CV content as a formatted text file.\n\n**Parameters:**\n- `cvData` (object, required): Tailored CV data object (from generate_cv_data)\n- `outputPath` (string, required): Directory path where the CV should be saved\n- `fileName` (string, optional): Custom filename (without extension), defaults to \"generated_cv\"\n\n#### 4. `generate_cv` (Recommended - Main CV Generation Tool)\nGenerate tailored CV and save to specified location or default folder. **Defaults to PDF format** if no format is specified.\n\n**Parameters:**\n- `userProfile` (object, required): Complete user profile information\n- `jobRequirements` (object, required): Job requirements object\n- `outputPath` (string, optional): Directory path where the CV should be saved (uses DEFAULT_OUTPUT_PATH if not provided)\n- `fileName` (string, optional): Custom filename (without extension), defaults to \"professional_cv\"\n- `format` (string, optional): Output format - \"pdf\" (default), \"html\", or \"markdown\"\n- `pageSize` (string, optional): PDF page size (e.g., 'A4', 'Letter', 'Legal') - uses PDF_PAGE_SIZE env var if not provided\n- `margins` (object, optional): PDF margins with top, right, bottom, left properties (e.g., '10mm', '0.8in') - uses PDF_MARGIN_* env vars if not provided\n\n#### 5. `generate_and_save_cv_pdf` (Legacy - Use generate_cv instead)\nGenerate tailored CV and save directly as professional PDF (combines CV generation and PDF creation in one step).\n\n**Parameters:**\n- `userProfile` (object, required): Complete user profile information\n- `jobRequirements` (object, required): Job requirements object\n- `outputPath` (string, optional): Directory path where the CV should be saved (uses DEFAULT_OUTPUT_PATH if not provided)\n- `fileName` (string, optional): Custom filename (without extension), defaults to \"professional_cv\"\n\n#### 6. `generate_and_save_cv_markdown` (Recommended)\nGenerate tailored CV and save directly as Markdown (combines CV generation and Markdown creation in one step).\n\n**Parameters:**\n- `userProfile` (object, required): Complete user profile information\n- `jobRequirements` (object, required): Job requirements object\n- `outputPath` (string, required): Directory path where the CV should be saved\n- `fileName` (string, optional): Custom filename (without extension), defaults to \"cv_markdown\"\n\n#### 7. `generate_and_save_cv_html` (Recommended)\nGenerate tailored CV and save directly as HTML (combines CV generation and HTML creation in one step).\n\n**Parameters:**\n- `userProfile` (object, required): Complete user profile information\n- `jobRequirements` (object, required): Job requirements object\n- `outputPath` (string, required): Directory path where the CV should be saved\n- `fileName` (string, optional): Custom filename (without extension), defaults to \"cv_html\"\n\n#### 8. `generate_cv_pdf` (Advanced)\nGenerate and save CV as a professional PDF document from pre-generated CV data.\n\n**Parameters:**\n- `cvData` (object, required): Tailored CV data object (from generate_cv_data)\n- `outputPath` (string, required): Directory path where the CV should be saved\n- `fileName` (string, optional): Custom filename (without extension), defaults to \"professional_cv\"\n\n#### 9. `generate_cv_markdown` (Advanced)\nGenerate CV as Markdown format from pre-generated CV data.\n\n**Parameters:**\n- `cvData` (object, required): Tailored CV data object (from generate_cv_data)\n- `outputPath` (string, required): Directory path where the CV should be saved\n- `fileName` (string, optional): Custom filename (without extension), defaults to \"cv_markdown\"\n\n#### 10. `generate_cv_html` (Advanced)\nGenerate CV as styled HTML document from pre-generated CV data.\n\n**Parameters:**\n- `cvData` (object, required): Tailored CV data object (from generate_cv_data)\n- `outputPath` (string, required): Directory path where the CV should be saved\n- `fileName` (string, optional): Custom filename (without extension), defaults to \"cv_web\"\n\n### Cover Letter and Email Template Tools\n\n#### 11. `generate_cover_letter` (Recommended)\nGenerate a tailored cover letter for a specific job application. Returns formatted text that can be displayed on screen or saved as PDF.\n\n**Parameters:**\n- `userProfile` (object, required): Complete user profile information\n- `jobRequirements` (object, required): Job requirements object\n- `hiringManagerName` (string, optional): Name of the hiring manager if known\n- `format` (string, optional): Output format - \"text\" (default) for on-screen display, \"html\" for styled viewing\n\n#### 12. `save_cover_letter_pdf`\nGenerate and save a cover letter as PDF to specified location. Automatically extracts email addresses and hiring manager names from job descriptions.\n\n**Parameters:**\n- `userProfile` (object, required): Complete user profile information\n- `jobRequirements` (object, required): Job requirements object\n- `outputPath` (string, optional): Directory path where the cover letter should be saved\n- `fileName` (string, optional): Custom filename (without extension), defaults to \"cover_letter\"\n- `hiringManagerName` (string, optional): Name of the hiring manager if known\n- `pageSize` (string, optional): PDF page size (e.g., 'A4', 'Letter', 'Legal')\n- `margins` (object, optional): PDF margins with top, right, bottom, left properties\n\n#### 13. `generate_email_template`\nGenerate a professional email template for job application. Automatically detects email addresses from job description.\n\n**Parameters:**\n- `userProfile` (object, required): Complete user profile information\n- `jobRequirements` (object, required): Job requirements object\n- `templateType` (string, optional): Type of email template - \"application\" (default), \"follow_up\", \"inquiry\", \"thank_you\"\n- `recipientEmail` (string, optional): Recipient email address (optional, will use extracted email from job description if available)\n- `hiringManagerName` (string, optional): Name of the hiring manager if known\n\n#### 14. `draft_complete_application` (Recommended - One-Stop Solution)\nDraft a complete job application package: CV, cover letter, and email template. Automatically generates PDF CV and cover letter, plus email template if email address is found in the job description.\n\n**Parameters:**\n- `userProfile` (object, required): Complete user profile information\n- `jobRequirements` (object, required): Job requirements object\n- `outputPath` (string, optional): Directory path where files should be saved\n- `baseFileName` (string, optional): Base filename for generated files (without extension), defaults to \"job_application\"\n- `hiringManagerName` (string, optional): Name of the hiring manager if known\n\n## Configuration\n\n### Environment Variables\n\nThe MCP server supports various configuration options via environment variables in the Claude Desktop config:\n\n```json\n{\n  \"mcpServers\": {\n    \"cv-forge\": {\n      \"command\": \"node\",\n      \"args\": [\"path/to/cv-forge/build/index.js\"],\n      \"cwd\": \"path/to/cv-forge\",\n      \"env\": {\n        \"DEFAULT_OUTPUT_PATH\": \"D:/CV\",\n        \"TEMP_DIR\": \"C:/Users/YourName/AppData/Local/Temp/cv-maker\",\n        \"PDF_TIMEOUT\": \"300000\",\n        \"PDF_PAGE_SIZE\": \"A4\",\n        \"PDF_MARGIN_TOP\": \"10mm\",\n        \"PDF_MARGIN_RIGHT\": \"10mm\",\n        \"PDF_MARGIN_BOTTOM\": \"10mm\",\n        \"PDF_MARGIN_LEFT\": \"10mm\",\n        \"PDF_BASE_FONT_SIZE\": \"12px\",\n        \"PDF_LINE_HEIGHT\": \"1.4\",\n        \"PDF_H1_FONT_SIZE\": \"20px\",\n        \"PDF_H2_FONT_SIZE\": \"15px\",\n        \"PDF_H3_FONT_SIZE\": \"13px\",\n        \"PDF_PARAGRAPH_SPACING\": \"8px\",\n        \"PDF_SECTION_SPACING\": \"12px\"\n      }\n    }\n  }\n}\n```\n\n**Configuration Options:**\n\n- `DEFAULT_OUTPUT_PATH`: Default directory for saving CV files (when outputPath is not provided or is \"./\")\n- `TEMP_DIR`: Directory for temporary files during PDF generation\n- `PDF_TIMEOUT`: Timeout for PDF generation in milliseconds\n- `PDF_PAGE_SIZE`: Default PDF page size - defaults to 'A4'\n  - Common sizes: 'A4' (210×297mm), 'Letter' (8.5×11in), 'Legal' (8.5×14in)\n- `PDF_MARGIN_*`: PDF page margins (top, right, bottom, left) - defaults to '10mm'\n- `PDF_BASE_FONT_SIZE`: Base font size for CV body text (12px ≈ MS Word 9pt, 13px ≈ 10pt)\n- `PDF_LINE_HEIGHT`: Line height for text (1.4 recommended for compact layout)\n- `PDF_H1_FONT_SIZE`: Font size for name/title heading\n- `PDF_H2_FONT_SIZE`: Font size for section headings\n- `PDF_H3_FONT_SIZE`: Font size for job titles and subsections\n- `PDF_PARAGRAPH_SPACING`: Spacing between paragraphs\n- `PDF_SECTION_SPACING`: Spacing between major sections\n\n## Example Usage with Claude Desktop\n\nOnce connected to Claude Desktop, you can use natural language to interact with the CV maker:\n\n### 1. Parse Job Requirements\n```\n\"Can you parse this job posting for me:\n\nJob Title: Senior Software Engineer\nCompany: TechCorp Inc\nDescription: We are looking for a Senior Software Engineer with 5+ years of experience in JavaScript, React, and Node.js. Must have experience with cloud platforms and agile methodologies. Strong communication skills required.\"\n```\n\n### 2. Generate Tailored CV (Simple One-Step Process - PDF by Default)\n```\n\"Generate a tailored CV for me based on this job posting:\n\nJob Title: Senior Software Engineer\nCompany: TechCorp Inc\nJob Description: We are looking for a Senior Software Engineer with 5+ years of experience in JavaScript, React, and Node.js. Must have experience with cloud platforms and agile methodologies.\n\nMy Profile:\n- Full Name: John Doe\n- Email: john@example.com\n- Phone: +1-555-0123\n- Experience: 6 years as Software Engineer at various companies\n- Skills: JavaScript, Python, React, Node.js, AWS, Docker\n- Education: BS Computer Science from State University\n\nPlease save it to C:\\Users\\John\\Documents\\CVs with filename 'john_doe_senior_engineer_techcorp'\"\n```\n\n**Note:** This will automatically generate a PDF file (default format) unless you specify a different format.\n\n### 3. Generate Different Formats\n```\n\"Can you generate my CV in multiple formats? I need:\n1. A professional PDF for applications (default format)\n2. A Markdown version for my GitHub  \n3. An HTML version for my website\n\nSave them all to C:\\Users\\John\\Documents\\CVs with the base filename 'john_doe_cv'\"\n```\n\n**Or specify format explicitly:**\n```\n\"Generate my CV in HTML format and save it to C:\\Users\\John\\Documents\\CVs\"\n```\n\n**Or specify custom page size and margins for PDF:**\n```\n\"Generate my CV as a PDF with Letter page size and 1 inch margins on all sides, save it to C:\\Users\\John\\Documents\\CVs\"\n```\n\n### 3. Generate Cover Letters\n```\n\"Generate a cover letter for the Senior Software Engineer position at TechCorp Inc. The job description mentions the hiring manager is Sarah Johnson and applications should be sent to careers@techcorp.com.\"\n```\n\n### 4. Generate Email Templates\n```\n\"Create an email template for applying to the Senior Software Engineer position at TechCorp Inc. The job posting includes the email careers@techcorp.com and mentions Sarah Johnson as the hiring manager.\"\n```\n\n### 5. Draft Complete Application Package (Recommended)\n```\n\"Draft a complete job application package for the Senior Software Engineer position at TechCorp Inc. Include CV, cover letter, and email template. Save everything to C:\\Users\\John\\Documents\\Applications with the base filename 'techcorp_application'.\"\n```\n\n**This will generate:**\n- `techcorp_application_CV.pdf` - Tailored CV\n- `techcorp_application_Cover_Letter.pdf` - Professional cover letter\n- `techcorp_application_Email_Template.txt` - Email template (if email address found in job description)\n\n### 6. Generate Follow-up Email Template\n```\n\"Generate a follow-up email template for the Senior Software Engineer position I applied to at TechCorp Inc last week.\"\n```\n\n### 7. Direct Tool Usage Examples\nIf you want to use the tools directly (advanced usage):\n\n1. **Parse a job posting:**\n   ```json\n   {\n     \"tool\": \"parse_job_requirements\",\n     \"args\": {\n       \"jobTitle\": \"Senior Software Engineer\",\n       \"company\": \"TechCorp Inc\",\n       \"jobDescription\": \"We are looking for a Senior Software Engineer with 5+ years of experience in JavaScript, React, and Node.js. Must have experience with cloud platforms and agile methodologies.\"\n     }\n   }\n   ```\n\n2. **Generate tailored CV:**\n   ```json\n   {\n     \"tool\": \"generate_cv_data\", \n     \"args\": {\n       \"userProfile\": { /* user profile object */ },\n       \"jobRequirements\": { /* job requirements object */ }\n     }\n   }\n   ```\n\n3. **Generate PDF CV:**\n   ```json\n   {\n     \"tool\": \"generate_cv_pdf\",\n     \"args\": {\n       \"cvData\": { /* tailored CV data */ },\n       \"outputPath\": \"C:\\\\Users\\\\YourName\\\\Documents\\\\CVs\",\n       \"fileName\": \"senior_engineer_techcorp_cv\"\n     }\n   }\n   ```\n\n4. **Generate Markdown CV:**\n   ```json\n   {\n     \"tool\": \"generate_cv_markdown\",\n     \"args\": {\n       \"cvData\": { /* tailored CV data */ },\n       \"outputPath\": \"C:\\\\Users\\\\YourName\\\\Documents\\\\CVs\",\n       \"fileName\": \"cv_for_github\"\n     }\n   }\n   ```\n\n5. **Generate HTML CV:**\n   ```json\n   {\n     \"tool\": \"generate_cv_html\",\n     \"args\": {\n       \"cvData\": { /* tailored CV data */ },\n       \"outputPath\": \"C:\\\\Users\\\\YourName\\\\Documents\\\\CVs\",\n       \"fileName\": \"web_resume\"\n     }\n   }\n   ```\n\n6. **Save CV as text file:**\n   ```json\n   {\n     \"tool\": \"save_cv_text\",\n     \"args\": {\n       \"cvData\": { /* tailored CV data */ },\n       \"outputPath\": \"C:\\\\Users\\\\YourName\\\\Documents\\\\CVs\",\n       \"fileName\": \"senior_engineer_techcorp_cv\"\n     }\n   }\n   ```\n\n## How It Works\n\n1. **Job Analysis**: The server parses job descriptions to extract:\n   - Required technical skills\n   - Preferred qualifications\n   - Company industry and size\n   - Experience level requirements\n\n2. **CV Tailoring**: Based on the analysis, it:\n   - Prioritizes relevant skills and experience\n   - Adjusts the professional summary\n   - Reorders and emphasizes matching achievements\n   - Incorporates job-specific keywords for ATS optimization\n\n3. **Output Generation**: Creates a well-formatted text CV that:\n   - Uses ATS-friendly formatting\n   - Includes relevant keywords\n   - Maintains professional structure\n   - Highlights the most relevant qualifications\n\n## File Structure\n\n```\ncv-forge/\n├── src/\n│   ├── index.ts                    # Main MCP server\n│   └── lib/\n│       ├── job-parser.ts           # Job requirement parsing logic\n│       ├── cv-generator.ts         # CV tailoring algorithms\n│       ├── document-generator.ts   # Multi-format document generation\n│       └── word-generator.ts       # Word document generation (future)\n├── build/                          # Compiled JavaScript files\n├── package.json                    # Project configuration\n├── tsconfig.json                   # TypeScript configuration\n├── claude_desktop_config.example.json  # Example configuration\n└── README.md                       # This file\n```\n\n## Development\n\n### Building\n```bash\nnpm run build\n```\n\n### Starting Development Server\n```bash\nnpm run dev\n```\n\n### Project Structure\n- `src/index.ts`: Main MCP server with tool registration\n- `src/lib/job-parser.ts`: Parses job requirements, extracts key information, emails, and hiring manager names\n- `src/lib/cv-generator.ts`: Generates tailored CV content based on job requirements\n- `src/lib/cover-letter-generator.ts`: Generates personalized cover letters for job applications\n- `src/lib/email-template-generator.ts`: Creates professional email templates for various application scenarios\n- `src/lib/document-generator.ts`: Multi-format document generation (PDF, HTML, Markdown)\n- `src/lib/word-generator.ts`: (Future) Word document generation functionality\n\n## Troubleshooting\n\n### PDF not saving to configured location\n- Ensure `DEFAULT_OUTPUT_PATH` is set in your Claude Desktop config\n- Restart Claude Desktop after changing configuration\n- Check that the path exists or the application has permission to create it\n\n### Font size too large or small\n- Adjust `PDF_BASE_FONT_SIZE` in environment variables (12px ≈ 9pt, 13px ≈ 10pt MS Word)\n- Modify `PDF_LINE_HEIGHT` for tighter/looser spacing\n- Restart Claude Desktop after changes\n\n### PDF generation fails\n- Check that output directory exists and is writable\n- Verify `TEMP_DIR` path is valid\n- Ensure sufficient disk space\n\n### Custom page size not working\n- Ensure page size is a valid format (A4, Letter, Legal, A3, A5, etc.)\n- Check that the page size is supported by the PDF generator\n- Use standard page size names (case-sensitive)\n\n### Custom margins not applied\n- Use proper units: 'mm', 'cm', 'in', 'px', 'pt'\n- Example: '10mm', '0.8in', '72pt'\n- Restart Claude Desktop after changing environment variables\n\n## Future Enhancements\n\n- Enhanced Word document generation with advanced formatting\n- Multiple CV and cover letter templates (modern, classic, minimal)\n- Advanced keyword optimization algorithms\n- Integration with job boards for automatic job parsing\n- LinkedIn profile integration for automatic profile data\n- Interview preparation questions based on job requirements\n- Salary negotiation guidance based on market data\n- Multi-language support for international applications\n- AI-powered writing suggestions and improvements\n\n## Dependencies\n\n- `@modelcontextprotocol/sdk`: Core MCP functionality\n- `zod`: Schema validation and type safety\n- `typescript`: TypeScript compiler\n- `md-to-pdf`: PDF generation from Markdown\n- `markdown-it`: Markdown parsing and HTML conversion\n- `docx`: Word document generation (for future Word output)\n\n## License\n\nThis project is available under the MIT License.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit pull requests or open issues for bugs and feature requests.\n",
  "bytes": 23285,
  "sha": "54720151c11f3d23016f80bb3b2bdc1ab7c54e43e490561c4f1d0b43c569fd6a",
  "repo_slug": "thechandanbhagat/cv-forge",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_thechandanbhagat_cv_forge_69e74f3b/readme"
}