We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/keyurgolani/ThoughtMcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Emotion Detection Module
*
* Exports emotion detection components including:
* - Circumplex Model emotion analyzer
* - Discrete emotion classifier
* - Contextual emotion processor
* - Emotional trajectory tracker
* - Emotion types and interfaces
*/
export { CircumplexEmotionAnalyzer } from "./circumplex-analyzer";
export { ContextualEmotionProcessor } from "./contextual-processor";
export { DiscreteEmotionClassifier } from "./discrete-emotion-classifier";
export { EmotionalTrajectoryTracker } from "./trajectory-tracker";
export type {
CircumplexState,
ContextualEmotionResult,
ContextualProcessingOptions,
CulturalContext,
EmotionAdjustment,
EmotionAnalysisOptions,
EmotionClassification,
EmotionModel,
EmotionType,
EmotionalContext,
EmotionalFeatures,
EmotionalPattern,
EmotionalPatternType,
EmotionalShift,
EmotionalTrigger,
Message,
ProfessionalContext,
Situation,
TrajectoryInsight,
TrajectoryInsightType,
TrajectoryStatistics,
} from "./types";