Peec AI
list_topics
List topics in a project. Topics are folder-like groupings — each prompt belongs to exactly one topic. Use this tool to resolve topic names to IDs before filtering (topic_id filter/dimension, list_prompts), and to label topic IDs from report output with their human-readable names before presenting results. Returns columnar JSON: {columns, rows, rowCount}. Columns: id, name.
Remote peec-ai/peec-ai-mcp
Other tools also called list_topics?
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"
},
"project_id": {
"type": "string",
"description": "The project ID"
}
}
}