{
"mcpServers": {
"chat-analysis": {
"env": {
"NEO4J_URL": "bolt://localhost:7687",
"NEO4J_USER": "neo4j",
"QDRANT_URL": "http://localhost:6333",
"NEO4J_PASSWORD": "your-password"
},
"args": [
"-m",
"mcp_chat_analysis.server"
],
"command": "python"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that enables semantic analysis of chat conversations through vector embeddings and knowledge graphs. This server provides tools for analyzing chat data, performing semantic search, extracting concepts, and analyzing conversation patterns.
Is it safe?
No known CVEs for mcp-chat-analysis-server.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 458 days ago. 12 stars.
Will it work with my client?
Transport: stdio, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No known vulnerabilities.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'mcp-chat-analysis-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Chat Analysis Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that enables semantic analysis of chat conversations through vector embeddings and knowledge graphs. This server provides tools for analyzing chat data, performing semantic search, extracting concepts, and analyzing conversation patterns.
# Install the package
pip install mcp-chat-analysis-server
# Set up configuration
cp config.example.yml config.yml
# Edit config.yml with your database settings
# Run the server
python -m mcp_chat_analysis.server
Add to your claude_desktop_config.json:
{
"mcpServers": {
"chat-analysis": {
"command": "python",
"args": ["-m", "mcp_chat_analysis.server"],
"env": {
"QDRANT_URL": "http://localhost:6333",
"NEO4J_URL": "bolt://localhost:7687",
"NEO4J_USER": "neo4j",
"NEO4J_PASSWORD": "your-password"
}
}
}
}
Import and analyze chat conversations
{
"source_path": "/path/to/export.zip",
"format": "openai_native" # or html, markdown, json
}
Search conversations by semantic similarity
{
"query": "machine learning applications",
"limit": 10,
"min_score": 0.7
}
Analyze conversation metrics
{
"conversation_id": "conv-123",
"metrics": [
"message_frequency",
"response_times",
"topic_diversity"
]
}
Extract and analyze concepts
{
"conversation_id": "conv-123",
"min_relevance": 0.5,
"max_concepts": 10
}
See ARCHITECTURE.md for detailed diagrams and documentation of:
pip install mcp-chat-analysis-server
# Using Docker (recommended)
docker compose up -d
cp .env.example .env
# Edit .env with your settings
git clone https://github.com/rebots-online/mcp-chat-analysis-server.git
cd mcp-chat-analysis-server
pip install -e ".[dev]"
pytest tests/
See CONTRIBUTING.md for guidelines.
MIT License - See LICENSE file for details.