π¨ Implement core functionality for Job Search MCP Server, including user profile management, job search, cover letter generation, and Q&A response tools. Add configuration and service layers, and establish dependency management with uv. Introduce .gitignore and .python-version files for environment setup.
4fd18a2
"""Tools module for Job Search MCP Server.""" | |
from .profile_tool import ProfileTool | |
from .job_search_tool import JobSearchTool | |
from .cover_letter_tool import CoverLetterTool | |
from .qa_tool import QATool | |
__all__ = ["ProfileTool", "JobSearchTool", "CoverLetterTool", "QATool"] | |