list_instincts
Retrieve all active instincts with confidence scores to understand available contextual rules and preferences in the MCP Context Provider system.
Instructions
List all loaded instincts with their confidence scores
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/server/index.ts:301-312 (handler)The handler for the `list_instincts` tool, which retrieves all instincts from the engine and returns them as a JSON-formatted list.
case 'list_instincts': { const instincts = engine.getAllInstincts().map((i) => ({ id: i.id, domain: i.domain, rule: i.rule, confidence: i.confidence, active: i.active, approved_by: i.approved_by, usage_count: i.usage_count, })); return { content: [{ type: 'text', text: JSON.stringify(instincts, null, 2) }] }; }