We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yeison-liscano/demo_http_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
from http_mcp.types import Prompt
from app.prompts.nvd_search import NVDSearchInput, async_nvd_search, sync_nvd_search
PROMPTS = (
Prompt(
func=async_nvd_search,
arguments_type=NVDSearchInput,
),
Prompt(
func=sync_nvd_search,
arguments_type=NVDSearchInput,
),
)
__all__ = ["PROMPTS"]