Agentic-Emotion
Verified Safeby sean-jack
Overview
An MCP server that enables Claude Code to analyze text and display emotions in a real-time visual window.
Installation
python3 /path/to/Agentic-Emotion/mcp-emotion-server/server.pyEnvironment Variables
- EMOTION_PIPE_NAME
- LOG_LEVEL
Security Notes
The server uses local inter-process communication (named pipes on Windows, Unix sockets on macOS/Linux) and `stdio` for MCP communication, significantly limiting network exposure. Text input for emotion analysis is processed by a local AI model (`transformers` pipeline) and keyword matching, without direct `eval` or arbitrary code execution. `pywin32` is a dependency on Windows, which interacts with OS internals but is a standard library.
Similar Servers
claude-code-mcp
Acts as an MCP server to enable LLMs to run Claude Code CLI in one-shot mode, bypassing permissions for complex coding, file system, Git, and terminal operations.
Delphi-MCP-Server
Implements the Model Context Protocol (MCP) in Delphi to enable AI-powered development workflows and integrate with clients like Claude Code.
consult-llm-mcp
An MCP server that allows AI agents like Claude Code to consult stronger, more capable AI models (e.g., GPT-5.2, Gemini 3.0 Pro) for complex code analysis, debugging, and architectural advice.
claude-faf-mcp
Optimizes AI understanding of software projects by providing persistent context, fixing context-drift, and enabling bi-directional synchronization between project metadata and AI documentation.