get_insights
Filter and retrieve processed cognitive insights by thought type, significance score, and limit from MCP Contemplation's continuous background processing for enhanced decision-making.
Instructions
Retrieve processed insights from contemplation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum insights to return (default 10) | |
min_significance | No | Minimum significance score 1-10 (default 5) | |
thought_type | No | Filter by thought type |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum insights to return (default 10)",
"type": "number"
},
"min_significance": {
"description": "Minimum significance score 1-10 (default 5)",
"maximum": 10,
"minimum": 1,
"type": "number"
},
"thought_type": {
"description": "Filter by thought type",
"enum": [
"pattern",
"connection",
"question",
"general"
],
"type": "string"
}
},
"type": "object"
}