Peec AI
list_prompts
List prompts (conversational questions tracked daily across AI engines) in a project. Supports filtering by topic_id and tag_id. Use this tool to resolve prompt text to IDs before filtering reports (prompt_id filter/dimension), and to label prompt IDs from report output with their actual text before presenting results. Returns columnar JSON: {columns, rows, rowCount}. Columns: id, text, tag_ids (array of tag ID strings), topic_id (string or null).
Remote peec-ai/peec-ai-mcp
Other tools also called list_prompts?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"default": 100,
"maximum": 10000,
"minimum": 1,
"description": "Maximum number of results to return"
},
"offset": {
"type": "number",
"default": 0,
"minimum": 0,
"description": "Number of results to skip"
},
"tag_id": {
"type": "string",
"description": "Filter prompts by tag ID"
},
"topic_id": {
"type": "string",
"description": "Filter prompts by topic ID"
},
"project_id": {
"type": "string",
"description": "The project ID"
}
}
}