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
insert_leads.py•390 B
from pydantic import BaseModel
class InsertLeadsRequest(BaseModel):
"""
Request model for inserting leads.
Attributes:
source (str): The source from which to get leads.
location (str): The country code for the location.
job_params (list[str]): List of job titles to filter leads.
"""
source: str
location: str
job_params: list[str]