### Python Project Requirements List Source: https://github.com/alperenkocyigit/call-for-papers-mcp/blob/main/requirements.txt This snippet provides a list of Python packages and their minimum version requirements for the 'call-for-papers-mcp' project. These dependencies are essential for running the project and are typically installed using pip from a requirements.txt file. ```Python fastapi>=0.95.0 uvicorn>=0.21.0 requests>=2.28.0 beautifulsoup4>=4.11.0 pydantic>=1.10.0 mcp ``` -------------------------------- ### API Tool: getEvents - Search Academic Conferences Source: https://github.com/alperenkocyigit/call-for-papers-mcp/blob/main/README.md Search for academic conferences and events from WikiCFP based on specified keywords. This tool scrapes conference information and returns detailed event data, including name, description, dates, location, deadlines, and links. ```APIDOC Tool: getEvents Description: Search for conferences matching specific keywords. Parameters: - keywords (string, required): Keywords to search for conferences (e.g., 'ai agent', 'machine learning') - limit (number, optional): Maximum number of events to return (default: 10) Returns: A JSON object with the following properties: - status (string): Status of the operation (success/error) - count (number): Number of events found - events (array): Array of conference events, each containing: - event_name (string): Name of the conference - event_description (string): Description of the conference - event_time (string): Date and time of the conference - event_location (string): Location of the conference - deadline (string): Submission deadline - event_link (string): Link to the conference page on WikiCFP ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.