MCP Chat Analysis Server
MCPチャット分析サーバー
ベクトル埋め込みとナレッジグラフを用いてチャット会話の意味分析を可能にするモデルコンテキストプロトコル(MCP)サーバー。このサーバーは、チャットデータの分析、意味検索の実行、概念の抽出、会話パターンの分析のためのツールを提供します。
主な特徴
🔍セマンティック検索:ベクトル類似性を使用して関連するメッセージや会話を検索します
🕸️ナレッジグラフ: メッセージ、概念、トピック間の関係をナビゲートします
📊会話分析:パターン、指標、会話のダイナミクスを分析
🔄柔軟なインポート:さまざまなチャットエクスポート形式をサポート
🚀 MCP 統合: Claude やその他の MCP 互換システムとの簡単な統合
Related MCP server: Claude Conversation Logger
クイックスタート
# 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.serverMCP統合
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"
}
}
}
}利用可能なツール
会話のインポート
チャット会話をインポートして分析する
{
"source_path": "/path/to/export.zip",
"format": "openai_native" # or html, markdown, json
}セマンティック検索
意味的類似性で会話を検索する
{
"query": "machine learning applications",
"limit": 10,
"min_score": 0.7
}分析メトリクス
会話指標を分析する
{
"conversation_id": "conv-123",
"metrics": [
"message_frequency",
"response_times",
"topic_diversity"
]
}抽出概念
概念を抽出して分析する
{
"conversation_id": "conv-123",
"min_relevance": 0.5,
"max_concepts": 10
}建築
詳細な図とドキュメントについては、 ARCHITECTURE.md を参照してください。
システムコンポーネントと相互作用
データフローと処理パイプライン
ストレージスキーマとベクトル演算
ツール統合メカニズム
前提条件
Python 3.8以上
ナレッジグラフストレージ用の Neo4j データベース
セマンティック検索のためのQdrantベクトルデータベース
埋め込みのための文変換子
インストール
パッケージをインストールします。
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/貢献
リポジトリをフォークする
機能ブランチを作成する
プルリクエストを送信する
ガイドラインについてはCONTRIBUTING.md を参照してください。
ライセンス
MIT ライセンス - 詳細についてはLICENSEファイルを参照してください。
関連プロジェクト
サポート
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Shared semantic graph for AI reviews, classification and structured memory across AI assistants.
Memory for deep conversational context across any platform
- ContextaOAuthcc.contexta
Persistent memory and knowledge graph for AI assistants — keyword + vector + graph search.
- MindlifyOAuthco.mindlify
Turn AI conversations into visual knowledge maps. Create, connect, search, and organize thoughts.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceEnables AI assistants to enhance their responses with relevant documentation through a semantic vector search, offering tools for managing and processing documentation efficiently.1464MIT
- AlicenseNot gradedqualityNot gradedmaintenanceEnables intelligent conversation management with 4 AI agents that provide semantic analysis, pattern discovery, automatic documentation, and relationship mapping. Logs and analyzes Claude conversations with 70% token optimization and multi-language support.2-
- FlicenseCqualityDmaintenanceEnables AI assistants to analyze codebases through semantic search, call graph generation, and function metadata extraction. Provides real-time code analysis with persistent vector storage for understanding complex code structures and relationships.136-
- AlicenseBqualityNot gradedmaintenanceEnables semantic search across multiple knowledge datasets using FAISS vector embeddings, allowing natural language queries to find relevant documents with fast retrieval.21-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/rebots-online/mcp-chat-analysis-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server