We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/saidsurucu/borsa-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""
Fund regulation models for Turkish investment fund compliance.
Contains models for fund regulation guides, legal compliance,
and regulatory documentation.
"""
from pydantic import BaseModel, Field
from typing import Optional
# --- Fund Regulation Model ---
class FonMevzuatSonucu(BaseModel):
"""Fund regulation guide content for legal compliance."""
baslik: Optional[str] = Field(None, description="Regulation guide title.")
icerik: Optional[str] = Field(None, description="Complete regulation content in Turkish covering investment fund rules, portfolio limits, fund types, and compliance requirements.")
dosya_boyutu: Optional[int] = Field(None, description="Content size in characters.")
son_guncelleme: Optional[str] = Field(None, description="Last update timestamp of the regulation content.")
kaynak: Optional[str] = Field(None, description="Source file or Python module containing the regulation data.")
error_message: Optional[str] = Field(None, description="Error message if regulation retrieval failed.")