We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kaiohz/prospectio-api-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
from abc import ABC, abstractmethod
from domain.entities.leads import Leads
class FetchLeadsPort(ABC):
"""
Abstract port interface for fetching leads from an external provider.
"""
@abstractmethod
async def fetch_leads(self, location: str, job_title: list[str]) -> Leads:
"""
Fetch leads from the provider.
Args:
location (str): The location to search for leads.
job_title (list[str]): List of job titles to filter leads.
Returns:
dict: The leads data retrieved from the provider.
"""
pass