We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ankimcp/anki-mcp-server-addon'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
prompts.py•548 B
# primitives/prompts.py
"""Central prompt registration module."""
from ..prompt_decorator import register_prompts
# Import triggers registration via @Prompt decorator
from .essential.prompts import review_session_prompt # noqa: F401
def register_all_prompts(mcp) -> None:
"""Register all MCP prompts with the server.
Note:
Prompts don't need call_main_thread as they just generate
text templates - they don't access Anki data directly.
Args:
mcp: FastMCP server instance
"""
register_prompts(mcp)