We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/agentic-ops/real-estate-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.pyβ’1.5 KiB
"""
Central prompt registration for the Real Estate MCP Server
This module imports and registers all prompt categories with the MCP server.
Provides a single entry point for prompt initialization.
"""
from mcp.server.fastmcp import FastMCP
from .agent_prompts import register_agent_prompts
from .client_prompts import register_client_prompts
from .market_prompts import register_market_prompts
# Import all prompt registration functions
from .property_prompts import register_property_prompts
def register_all_prompts(mcp: FastMCP):
"""
Register all prompt templates with the MCP server
This function imports and registers prompts from all categories:
- Property prompts: Property analysis and comparison
- Client prompts: Client matching and consultation
- Market prompts: Market analysis and investment opportunities
- Agent prompts: Agent performance and business development
Args:
mcp: The FastMCP server instance to register prompts with
"""
# Register all prompt categories
register_property_prompts(mcp)
register_client_prompts(mcp)
register_market_prompts(mcp)
register_agent_prompts(mcp)
print("β Registered all prompt templates:")
print(" π Property Analysis & Comparison Prompts")
print(" π― Client Matching & Consultation Prompts")
print(" π Market Analysis & Investment Prompts")
print(" π€ Agent Performance & Development Prompts")
# Export the main registration function
__all__ = ["register_all_prompts"]