Skip to main content
Glama
Kaiohz

Prospectio MCP API

contact.py1.46 kB
from typing import Optional, List from pydantic import BaseModel, Field class Contact(BaseModel): """ Represents a business contact with optional fields: name, email, phone, and company name. """ id: Optional[str] = Field(None, description="Unique identifier for the contact") company_id: Optional[str] = Field( None, description="Name of the company associated with the contact" ) company_name: Optional[str] = Field( None, description="Name of the company associated with the contact" ) job_id: Optional[str] = Field( None, description="ID of the job associated with the contact" ) job_title: Optional[str] = Field( None, description="Title of the job associated with the contact" ) name: Optional[str] = Field(None, description="Name of the contact") email: Optional[list[str]] = Field(None, description="Email address of the contact") title: Optional[str] = Field(None, description="Title of the contact") phone: Optional[str] = Field(None, description="Phone number of the contact") profile_url: Optional[str] = Field( None, description="URL to the contact's profile (e.g., LinkedIn)" ) class ContactEntity(BaseModel): """ DTO for a list of contacts. """ contacts: List[Contact] = Field(..., description="List of contacts") pages: Optional[int] = Field(None, description="Total number of pages available") pass

Latest Blog Posts

MCP directory API

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