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 typing import List, Optional
from pydantic import BaseModel, Field
from .work_experience import WorkExperience
class Profile(BaseModel):
"""Represents a user profile with personal and professional information."""
job_title: Optional[str] = Field(None, description="Current job title")
location: Optional[str] = Field(None, description="Current location")
bio: Optional[str] = Field(None, description="Professional biography")
work_experience: List[WorkExperience] = Field(
[], description="List of work experiences"
)
technos: List[str] = Field([], description="List of technologies")