We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rwxproject/mcp-server-template'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•274 B
"""
Prompts Module
Contains all MCP prompts and the prompt registration system.
Prompts provide templates and instructions that can be used by MCP clients.
"""
from .registry import register_all_prompts, PromptRegistry
__all__ = ["register_all_prompts", "PromptRegistry"]