Skip to main content
Glama
MikeyBeez

MCP Contemplation

by MikeyBeez

set_threshold

Configure the minimum significance level required for insights in Claude's contemplation loop to filter and prioritize cognitive processing results.

Instructions

Set minimum significance threshold for insights

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
significance_thresholdYesMinimum significance 1-10

Implementation Reference

  • MCP tool handler for 'set_threshold': extracts significance_threshold from arguments, calls contemplation.setThreshold(), and returns a confirmation message.
    case 'set_threshold': { const { significance_threshold } = args as { significance_threshold: number }; contemplation.setThreshold(significance_threshold); return { content: [{ type: 'text', text: `Significance threshold set to ${significance_threshold}` }], }; }
  • ContemplationManager method that sets the significanceThreshold property, clamping the value between 1 and 10.
    setThreshold(threshold: number): void { this.significanceThreshold = Math.max(1, Math.min(10, threshold)); }
  • src/index.ts:433-448 (registration)
    Tool registration in ListToolsRequestSchema handler, including name, description, and input schema.
    { name: 'set_threshold', description: 'Set minimum significance threshold for insights', inputSchema: { type: 'object', properties: { significance_threshold: { type: 'number', description: 'Minimum significance 1-10', minimum: 1, maximum: 10 } }, required: ['significance_threshold'], }, },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/MikeyBeez/mcp-contemplation'

If you have feedback or need assistance with the MCP directory API, please join our Discord server