Survey Insight MCP Server
Provides AI-powered survey comment analysis using Gemini API for automated issue detection and improvement recommendations in survey data
Generates interactive charts including bar graphs for keyword rankings and pie charts for analysis axis distributions in survey reports
Performs morphological analysis and natural language processing for English survey comments, including keyword extraction and frequency analysis
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Survey Insight MCP Serveranalyze the employee feedback survey CSV and generate a dashboard with word clouds and insights"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
📊 Survey Insight MCP Server
AI-powered survey comment analysis MCP server that generates beautiful interactive dashboards.
社内アンケートの自由コメント欄を自動分析し、洗練されたHTMLダッシュボードを生成するMCPサーバです。
📸 生成されるレポート例
エグゼクティブサマリー & WordCloud
キーワードランキング & 分析軸別グラフ
AI課題分析 & 改善提案
Related MCP server: Azure Usage MCP Server
✨ 主な機能
📝 CSV自動解析: エンコーディング自動検出、データクレンジング
🔍 形態素解析:
日本語: janomeによる高精度解析
英語: spaCyによる自然言語処理
キーワード抽出・頻度分析
🌐 多言語対応:
日本語・英語の自動判別
AI分析結果は常に日本語で出力
📈 分析軸対応: 部署、年代、役職などで多角的分析
☁️ WordCloud生成: 美しいカラースキーム(パープルグラデーション)
📊 インタラクティブグラフ: Plotlyで棒グラフ(キーワードランキング)、円グラフ(分析軸別分布)
🤖 AI課題分析: Claude/Gemini APIで課題発見・改善提案
🎨 HTMLダッシュボード: レスポンシブ、アニメーション付き
🚀 クイックスタート
Claude Codeでの使用
方法1: コマンドラインでインストール(推奨)
基本インストール(AI分析なし):
claude mcp add --transport stdio survey-insight --scope user -- \
uvx --from git+https://github.com/sinjorjob/survey-insight-mcp.git survey-insight-mcpAI分析あり - Claude Code Subscription利用(推奨):
claude mcp add --transport stdio survey-insight --scope user \
-e USE_CLAUDE_CODE_SUBSCRIPTION=true -- \
uvx --from git+https://github.com/sinjorjob/survey-insight-mcp.git survey-insight-mcpAI分析あり - Anthropic Claude API利用:
claude mcp add --transport stdio survey-insight --scope user \
-e LLM_PROVIDER=anthropic \
-e LLM_API_KEY=sk-ant-api03-your_key_here \
-e LLM_MODEL=claude-3-5-sonnet-20241022 -- \
uvx --from git+https://github.com/sinjorjob/survey-insight-mcp.git survey-insight-mcpAI分析あり - Google Gemini API利用:
claude mcp add --transport stdio survey-insight --scope user \
-e LLM_PROVIDER=google \
-e LLM_API_KEY=your_google_api_key_here \
-e LLM_MODEL=gemini-2.0-flash-exp -- \
uvx --from git+https://github.com/sinjorjob/survey-insight-mcp.git survey-insight-mcpインストール後、Claude Codeを再起動してください。
方法2: 設定ファイルで手動インストール
設定ファイル(Windows: %USERPROFILE%\.claude.json、macOS/Linux: ~/.claude.json)を編集:
基本設定(AI分析なし):
{
"mcpServers": {
"survey-insight": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/sinjorjob/survey-insight-mcp.git",
"survey-insight-mcp"
]
}
}
}AI分析あり - Claude Code Subscription利用:
{
"mcpServers": {
"survey-insight": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/sinjorjob/survey-insight-mcp.git",
"survey-insight-mcp"
],
"env": {
"USE_CLAUDE_CODE_SUBSCRIPTION": "true"
}
}
}
}AI分析あり - Anthropic Claude API利用:
{
"mcpServers": {
"survey-insight": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/sinjorjob/survey-insight-mcp.git",
"survey-insight-mcp"
],
"env": {
"LLM_PROVIDER": "anthropic",
"LLM_API_KEY": "sk-ant-api03-your_key_here",
"LLM_MODEL": "claude-3-5-sonnet-20241022"
}
}
}
}AI分析あり - Google Gemini API利用:
{
"mcpServers": {
"survey-insight": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/sinjorjob/survey-insight-mcp.git",
"survey-insight-mcp"
],
"env": {
"LLM_PROVIDER": "google",
"LLM_API_KEY": "your_google_api_key_here",
"LLM_MODEL": "gemini-2.0-flash-exp"
}
}
}
}設定後、Claude Codeを再起動してください。
LLMプロバイダーの変更方法
後からLLMプロバイダーを変更する場合:
方法A: コマンドで再登録
# 1. 既存の設定を削除
claude mcp remove survey-insight
# 2. 新しいプロバイダーで再登録
# Google Geminiに変更する場合:
claude mcp add --transport stdio survey-insight --scope user \
-e LLM_PROVIDER=google \
-e LLM_API_KEY=your_new_key_here \
-e LLM_MODEL=gemini-2.0-flash-exp -- \
uvx --from git+https://github.com/sinjorjob/survey-insight-mcp.git survey-insight-mcp
# Anthropic Claudeに変更する場合:
claude mcp add --transport stdio survey-insight --scope user \
-e LLM_PROVIDER=anthropic \
-e LLM_API_KEY=sk-ant-api03-your_new_key_here \
-e LLM_MODEL=claude-3-5-sonnet-20241022 -- \
uvx --from git+https://github.com/sinjorjob/survey-insight-mcp.git survey-insight-mcp
# 3. Claude Codeを再起動方法B: 設定ファイルを直接編集
~/.claude.jsonのenvセクションを編集して、Claude Codeを再起動。
使い方
Claude Code上で以下のように依頼:
examples/sample_survey.csvを分析して、部署別・年代別のレポートを生成してください。MCPツールが自動的に呼び出され、HTMLレポートとWordCloudが生成されます。
📋 CSVファイル要件
ファイル形式
拡張子:
.csvエンコーディング: 自動検出対応
cp932(Excel日本語 / Shift-JIS)shift-jisutf-8-sig(BOM付きUTF-8)utf-8
言語: 日本語・英語に対応
日本語: デフォルトで対応(追加設定不要)
英語: 自動で対応(英語モデルは依存関係に含まれます)
コメント列のテキストから言語を自動判別
languageパラメータで明示的な指定も可能("ja"または"en")AI分析結果は常に日本語で出力(入力言語に関わらず)
データ形式
必須要素:
コメント列: 自由記述テキストを含む列
列名に「コメント」「comment」「自由記述」「意見」「感想」「フィードバック」を含む場合は自動検出
上記以外の場合は最も平均文字数が長い文字列型の列を自動選択
comment_columnパラメータで明示的に指定も可能
オプション要素:
分析軸列: カテゴリカルデータ(部署、年代、役職など)
以下の条件で自動検出:
ユニーク値が2以上
ユニーク値が全体の50%未満
データ型が文字列 (object) またはカテゴリ (category)
analysis_axesパラメータで明示的に指定も可能除外: コメント列、ID列
データクレンジング:
完全に空の行は自動削除
重複行は自動削除
文字列の前後空白は自動トリミング
サンプルCSV構造
日本語:
部署,年代,コメント
営業,30代,対応が丁寧で良かったです
技術,40代,待ち時間が長いのが気になりました英語:
Department,Age_Group,Comments_Feedback
Sales,30s,The service was very polite and helpful
Technical,40s,The waiting time was a bit longサンプルファイル:
日本語版:
examples/sample_survey.csv英語版:
examples/healthcare_service_survey_en.csv
📝 AI分析機能について
AI分析なし:
形態素解析、キーワード抽出、グラフ生成、WordCloudのみ実行
環境変数設定不要
AI分析あり:
上記に加えて、AIによる課題発見・改善提案を実行
以下のいずれかの環境変数設定が必要:
USE_CLAUDE_CODE_SUBSCRIPTION=true(Claude Codeサブスクリプション)LLM_PROVIDER+LLM_API_KEY(Anthropic/Google API)
🔧 その他のMCPクライアント
Gemini CLI
設定ファイル(Windows: %USERPROFILE%\.gemini\settings.json、macOS/Linux: ~/.gemini/settings.json)を編集:
基本設定(AI分析なし):
{
"mcpServers": {
"survey-insight": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/sinjorjob/survey-insight-mcp.git",
"survey-insight-mcp"
]
}
}
}AI分析あり(Google Gemini API利用 - 推奨):
{
"mcpServers": {
"survey-insight": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/sinjorjob/survey-insight-mcp.git",
"survey-insight-mcp"
],
"env": {
"LLM_PROVIDER": "google",
"LLM_API_KEY": "your_google_api_key_here",
"LLM_MODEL": "gemini-2.0-flash-exp"
}
}
}
}設定後、Gemini CLIを再起動してください。
その他のMCPクライアント
MCP仕様に準拠した任意のクライアントで使用できます:
Transport: stdio
Command:
uvxArgs:
["--from", "git+https://github.com/sinjorjob/survey-insight-mcp.git", "survey-insight-mcp"]Environment Variables: 上記の環境変数設定を参照
🌐 多言語対応
Survey Insight MCP Serverは日本語と英語のアンケートに対応しています。
サポート言語
日本語: janome による形態素解析
英語: spacy (
en_core_web_sm) による形態素解析
言語判別
自動判別(推奨):
コメント列のテキストから自動的に言語を判別します。
examples/customer_feedback_en.csvを分析してください。手動指定:
languageパラメータで明示的に指定することも可能です。
{
"csv_path": "examples/survey_data.csv",
"language": "en" # "ja" or "en"
}英語環境のセットアップ
完全自動セットアップ:
英語CSVを初めて分析する際、spacyの英語モデル (en_core_web_sm) が完全自動でダウンロードされます。ユーザーによる事前セットアップは一切不要です。
初回のみ約12MBのモデルダウンロードが発生します(数秒〜数十秒)
2回目以降は既存のモデルを使用するため、ダウンロードは不要です
uvx環境で自動的に
uv pip installが実行されます
処理の違い
処理 | 日本語 (janome) | 英語 (spacy) |
形態素解析 | ✅ | ✅ |
キーワード抽出 | 表層形を使用 | レンマ(基本形)を使用 |
複合名詞抽出 | ✅ 対応 | ❌ 非対応(単語のみ) |
品詞フィルタリング | 名詞・動詞・形容詞 | NOUN・VERB・ADJ |
最小文字数 | 1文字以上 | 3文字以上 |
ストップワード | 日本語用リスト | 英語用リスト |
📖 MCPツール仕様
analyze_survey
CSVファイルからアンケート分析を実行し、HTMLレポートとWordCloudを生成します。
パラメータ:
csv_path(必須): CSVファイルのパスcomment_column(オプション): 自由コメント列の名前(省略時は自動検出)analysis_axes(オプション): 分析軸のリスト(例:["部署", "年代", "役職"])output_path(オプション): 出力HTMLパス(デフォルト:output/survey_report.html)enable_ai_analysis(オプション): AI課題分析を有効化(デフォルト:true)language(オプション): 言語コード("ja"or"en"、省略時はコメント列から自動判別)
使用例:
examples/healthcare_service_survey.csvを分析して、診療科別と年齢層別のレポートを生成してください。英語CSVの分析例:
examples/customer_feedback_en.csvを分析してください。🛠️ ローカル開発
環境構築
# リポジトリのクローン
git clone https://github.com/sinjorjob/survey-insight-mcp.git
cd survey-insight-mcp
# uv仮想環境作成
uv venv
# 依存パッケージインストール
uv pip install -e .環境変数設定
cp .env.example .env
# .envファイルを編集してLLM設定ローカルでのテスト
# MCPサーバをローカルから実行
uvx --from . survey-insight-mcp
# または、MCP Inspectorでテスト
npm install -g @modelcontextprotocol/inspector
mcp-inspector uvx --from . survey-insight-mcpテスト実行
# ユニットテスト
pytest
# Lintチェック
ruff check --line-length=127
ruff format --check --diff --line-length=127📁 プロジェクト構造
survey-insight-mcp/
├── pyproject.toml # パッケージ設定
├── README.md # このファイル
├── LICENSE # MITライセンス
├── .env.example # 環境変数テンプレート
├── src/survey_insight/
│ ├── server.py # エントリーポイント
│ ├── mcp_server.py # MCPサーバ実装
│ ├── csv_loader.py # CSV読み込み
│ ├── text_analyzer.py # 形態素解析
│ ├── chart_generator.py # グラフ生成
│ ├── ai_analyzer.py # AI課題分析
│ └── templates/
│ └── dashboard.html # HTMLテンプレート
├── tests/ # テストコード
└── examples/ # サンプルCSVファイル🔄 アップデート方法
最新版を取得するには:
# uvxキャッシュをクリア
uv cache clean
# Claude Code / Gemini CLIを再起動uvxは自動的に最新のコミットを取得します。
🐛 トラブルシューティング
問題1: MCPサーバが表示されない
解決策:
Claude Code設定ファイル(
~/.claude.json)を確認GitHubリポジトリのURLが正しいか確認
Claude Codeを再起動
問題2: AI分析が実行されない
原因: 環境変数が正しく設定されていない
解決策:
USE_CLAUDE_CODE_SUBSCRIPTION=trueを設定または、
LLM_PROVIDERとLLM_API_KEYを設定
問題3: 依存関係のエラー
解決策:
# uvxキャッシュをクリア
uv cache clean --force
# Claude Codeを再起動📝 ライセンス
MIT License
🤖 Powered by Claude AI
Available Tools
4 toolsanalyze_surveyC
アンケートCSVファイルを分析し、形態素解析、WordCloud、グラフを含む洗練されたHTMLレポートを生成します
| Name | Required | Description | Default |
|---|---|---|---|
| csv_path | Yes | アンケートCSVファイルのパス | |
| comment_column | No | 自由コメント列の名前(省略時は自動検出) | |
| analysis_axes | No | 分析軸のカラム名リスト(例: ['部署', '年代', '役職']) | |
| output_path | No | HTMLレポートの出力パス(デフォルト: output/survey_report.html) | |
| enable_ai_analysis | No | AI課題分析を有効化(デフォルト: true) | |
| language | No | 言語コード(省略時はコメント列から自動判別) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the tool generates HTML reports but doesn't cover critical aspects like whether it modifies input files, requires specific permissions, has rate limits, or handles errors. For a tool with 6 parameters and no annotation coverage, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in Japanese that front-loads the core functionality. It wastes no words and directly states what the tool does, making it highly concise and well-structured for its purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (6 parameters, no output schema, no annotations), the description is incomplete. It lacks information on behavioral traits, output details, error handling, and usage guidelines. While concise, it doesn't provide enough context for an agent to fully understand how to invoke and interpret results from this tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds minimal value beyond the schema by listing report components (morphological analysis, WordCloud, graphs), which loosely relates to parameters like 'analysis_axes' and 'enable_ai_analysis'. However, it doesn't provide additional syntax, format details, or usage context for the parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: analyzing survey CSV files and generating HTML reports with specific components (morphological analysis, WordCloud, graphs). It uses specific verbs ('analyze', 'generate') and identifies the resource ('survey CSV files'). However, it doesn't explicitly differentiate from sibling tools like 'extract_keywords' or 'generate_wordcloud', which might offer overlapping functionality.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'extract_keywords' or 'generate_wordcloud', nor does it specify prerequisites, ideal scenarios, or exclusions. Usage is implied through the description but lacks explicit context for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
extract_keywordsC
形態素解析でキーワードを抽出
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | 解析対象のテキスト | |
| top_n | No | 上位N件のキーワードを返す(デフォルト: 20) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions morphological analysis for keyword extraction but doesn't describe traits like language support, performance characteristics, error handling, or output format. For a tool with no annotations, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in Japanese that directly states the tool's function. It's front-loaded with the core action ('形態素解析でキーワードを抽出'), but could be slightly more structured by including key details. There's no wasted text, making it concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description is incomplete. It doesn't explain what the tool returns (e.g., list of keywords with scores), how errors are handled, or any dependencies. For a tool with 2 parameters and complex text processing, more context is needed to ensure proper usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with clear documentation for 'text' and 'top_n'. The description doesn't add any meaning beyond the schema, such as explaining how 'top_n' interacts with the extraction algorithm or providing examples. Baseline 3 is appropriate since the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the tool performs keyword extraction using morphological analysis, which is a clear purpose. However, it doesn't specify what type of keywords (e.g., nouns, named entities) or how it distinguishes from sibling tools like 'analyze_survey' or 'generate_wordcloud' that might also process text. The description is somewhat vague about the exact nature of the extraction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. The description doesn't mention any context, prerequisites, or exclusions, such as when to prefer 'extract_keywords' over 'analyze_survey' or 'generate_wordcloud'. It lacks explicit usage instructions, leaving the agent to infer based on tool names alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_wordcloudC
テキストデータからWordCloudを生成
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | WordCloud生成元のテキスト | |
| output_path | No | 画像出力パス(デフォルト: output/wordcloud.png) | |
| color_scheme | No | カラースキーム |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool generates a WordCloud but doesn't explain what that entails (e.g., image creation, file output, processing steps). It misses details like whether it's read-only, destructive, or has side effects (e.g., saving files), which is critical for a tool with output operations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in Japanese that directly states the tool's function. It's front-loaded with the core purpose and has no unnecessary words, making it highly concise and well-structured for quick understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a tool that generates visual output and has no output schema or annotations, the description is incomplete. It doesn't cover behavioral aspects (e.g., file creation, error handling) or provide context on when to use it, leaving gaps in understanding the tool's full operation and integration.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, meaning all parameters are documented in the schema itself. The description adds no additional meaning beyond the schema, such as explaining how parameters interact or providing examples. With high schema coverage, the baseline score is 3, as the description doesn't compensate but also doesn't detract.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: generating a WordCloud from text data. It specifies the verb ('generate') and resource ('WordCloud'), making it understandable. However, it doesn't distinguish this tool from its siblings (analyze_survey, extract_keywords, update_ai_analysis), which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention any prerequisites, exclusions, or comparisons with sibling tools like extract_keywords, which might also process text. This lack of context leaves the agent without usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_ai_analysisA
既存のHTMLレポートにClaude Codeが分析した課題と解決策を追加します。
使用前に必ず以下を実施してください:
1. analysis_summary.txtを読み込み(グラフデータ+分析軸別コメント詳細を含む)
2. グラフデータ(頻出キーワード、分析軸別統計)を定量的に分析
3. 分析軸別コメント詳細でセグメント特性を把握(全コメントが含まれる)
4. 定量データと定性データを統合して課題を抽出
5. 具体的なコメント引用を含めた詳細な課題説明を作成
APIキーなしでClaude Codeサブスクリプションのみで利用する場合に使用します。| Name | Required | Description | Default |
|---|---|---|---|
| report_path | Yes | 更新対象のHTMLレポートのパス | |
| issues | Yes | 検出された課題のリスト | |
| solutions | No | 改善提案のリスト |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It describes the tool's function (updating HTML reports with analysis) and prerequisites, but doesn't mention potential side effects (e.g., overwriting existing content), error conditions, or output format. The description adds value with the usage checklist and subscription context, but lacks details on mutation behavior, permissions, or response expectations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is structured with a purpose statement, a numbered checklist, and a usage condition. However, it's somewhat verbose for a tool description—the checklist could be more concise or moved to documentation. The information is front-loaded with the main purpose, but the detailed prerequisites might be better suited for a separate usage guide.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (updating reports with structured data), no annotations, and no output schema, the description does a reasonably complete job. It explains the tool's purpose, provides detailed prerequisites, and specifies usage context. However, it lacks information on what the updated report looks like, error handling, or confirmation of changes, which would be helpful for a mutation tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description doesn't add any parameter-specific information beyond what's in the schema. It mentions '課題と解決策' (issues and solutions) which aligns with the 'issues' and 'solutions' parameters, but provides no additional syntax, format, or usage details. Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '既存のHTMLレポートにClaude Codeが分析した課題と解決策を追加します' (adds issues and solutions analyzed by Claude Code to an existing HTML report). This specifies the verb (add/update), resource (HTML report), and content (issues and solutions). However, it doesn't explicitly differentiate from sibling tools like 'analyze_survey' or 'extract_keywords', which appear to be separate analysis tools rather than report updaters.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage guidelines: '使用前に必ず以下を実施してください' (before use, always do the following) with a 5-step checklist for data preparation. It also specifies when to use this tool: 'APIキーなしでClaude Codeサブスクリプションのみで利用する場合に使用します' (use when using only Claude Code subscription without API key). This gives clear context and prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
The four tools have distinct primary purposes: analyze_survey creates comprehensive HTML reports, extract_keywords focuses on keyword extraction, generate_wordcloud creates visual word clouds, and update_ai_analysis enhances existing reports with AI insights. However, there is some functional overlap as analyze_survey already includes keyword extraction and word cloud generation, which could cause confusion about when to use the specialized tools versus the comprehensive analyzer.
All tool names follow a consistent verb_noun pattern with snake_case formatting: analyze_survey, extract_keywords, generate_wordcloud, and update_ai_analysis. The naming is predictable and follows the same grammatical structure throughout, making it easy for agents to understand the action-object relationship.
Four tools is a reasonable number for a survey analysis server, providing focused functionality without being overwhelming. However, the set feels slightly thin for comprehensive survey analysis workflows, as it lacks tools for basic survey operations like loading/parsing survey data, filtering responses, or generating different types of visualizations beyond word clouds.
The toolset covers advanced analysis and reporting well but has notable gaps in foundational survey operations. There are no tools for importing/validating survey data, basic statistical analysis, filtering responses by demographics, or creating different visualization types. The workflow assumes users already have processed survey data ready for analysis, creating potential dead ends for agents needing to perform complete survey analysis from raw data.
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
Analyze customer feedback at scale — reviews, surveys, calls. AI-powered themes and sentiment.
AI survey platform: create and publish surveys, collect responses, generate AI analysis reports.
Semantic search across Japan's government white papers, in English or Japanese. Free beta.
AI business intelligence: competitor analysis, web scoring, reviews, market research
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables users to preprocess, analyze, and visualize CSV data through comprehensive tools for data manipulation, statistical analysis, and graph generation.3
- FlicenseNot gradedqualityDmaintenanceEnables natural language analysis of Azure usage data from CSV files, providing cost summaries, visualizations, and insights about service and regional spending patterns.1
- AlicenseCqualityBmaintenanceEnables conversational data analysis of Excel/CSV files through natural language queries, powered by 395 Excel functions via HyperFormula and multi-provider AI. Supports advanced analytics, bulk operations, financial modeling, and large file processing with intelligent chunking.353636MIT
- FlicenseNot gradedqualityDmaintenanceAn AI-driven tool for processing survey data that supports cross-tabulation, NPS and satisfaction scoring, and automated Excel report generation. It enables users to analyze datasets via natural language for tasks like merging response options and identifying demographic differences.
Appeared in Searches
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/sinjorjob/survey-insight-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server