We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ComplianceCow/cow-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
insights.py•527 B
from mcpconfig.config import mcp
@mcp.prompt()
async def generate_chart_prompt() -> list[str]:
return [
{
"role": "user",
"content": f"Generate a chart with "
f"Compliance Overview section containing Total controls; Controls Status: each status"
f"Progress bar chart for 'controlAssignmentStatus'"
f"Fetch dashboard data for latest quarterly"
# f"show 'Completed' status in orange color"
f"for these user data."
}
]