Feedback Synthesis MCP
フィードバック統合 MCP
AIエージェントと開発者のための顧客フィードバックインテリジェンス。GitHub Issues、Hacker Newsのスレッド、App Storeのレビューを統合し、証拠リンク付きの優先順位付けされた課題クラスターを作成します。x402マイクロペイメントによる従量課金制 — サインアップ不要。
何百ものフィードバック項目を手作業で読み込む必要はもうありません。フィードバック統合 MCPは、複数のソースから収集し、マルチパスLLMパイプラインを実行して、影響スコア、証拠リンク、推奨アクションを含む優先順位付けされた課題クラスターを返します。エージェントが読み取れる形式であり、創業者にとっても読みやすい形式です。
クイックスタート
インストール:
pip install feedback-synthesis-mcpウォレットキーを設定 (Baseメインネット上のUSDCを持つ任意のEVMウォレット):
export EVM_PRIVATE_KEY=your_private_key_hereClaude Desktopに追加 — ~/Library/Application Support/Claude/claude_desktop_config.json を編集:
{
"mcpServers": {
"feedback-synthesis-mcp": {
"command": "feedback-synthesis-mcp",
"env": {
"EVM_PRIVATE_KEY": "your_private_key_here"
}
}
}
}Cursorに追加 — プロジェクトルートの .cursor/mcp.json を編集:
{
"mcpServers": {
"feedback-synthesis-mcp": {
"command": "feedback-synthesis-mcp",
"env": {
"EVM_PRIVATE_KEY": "your_private_key_here"
}
}
}
}クライアントを再起動してください。これで4つの顧客インテリジェンスツールが利用可能になります。
ツール
ツール | 機能 | 価格 |
| マルチソース統合 → 証拠付きの優先順位付けされた課題クラスター | $0.05/回 |
| 単一ソースからの迅速な課題抽出 | $0.02/回 |
| キャッシュされたフィードバック項目全体の全文検索 | $0.01/回 |
| ソース全体の時系列センチメント分析 | $0.03/回 |
サポートされているソース: GitHub Issues、Hacker News、Apple App Storeレビュー
例
複数のソースからのフィードバックを統合
synthesize_feedback(
sources=[
{"type": "github_issues", "target": "owner/my-repo", "labels": ["bug", "feature-request"]},
{"type": "hackernews", "target": "Show HN: MyProduct"}
],
since="2026-01-01T00:00:00Z"
)戻り値:
{
"job_id": "syn_abc123",
"status": "completed",
"summary": "Analyzed 347 feedback items from 2 sources. Found 6 pain clusters.",
"pain_clusters": [
{
"rank": 1,
"title": "Authentication flow breaks on mobile Safari",
"severity": "critical",
"frequency": 23,
"impact_score": 0.92,
"description": "Users report inability to complete OAuth login on iOS Safari. Affects onboarding conversion.",
"evidence": [
{
"source": "github",
"url": "https://github.com/owner/my-repo/issues/142",
"snippet": "Login fails silently on Safari 17.2+"
}
],
"suggested_actions": [
"Fix Safari WebAuthn polyfill (see issue #142)",
"Add fallback auth flow for mobile browsers"
]
}
]
}GitHub Issuesからの迅速な課題抽出
get_pain_points(
source={"type": "github_issues", "target": "owner/my-repo", "labels": ["bug"]},
top_n=5
)特定のトピックを検索
search_feedback(query="pricing too expensive", sources=["github_issues", "hackernews"])センチメントの推移を追跡
get_sentiment_trends(
sources=[{"type": "appstore", "target": "com.example.myapp"}],
since="2025-10-01T00:00:00Z",
granularity="weekly"
)支払い
このMCPは、Baseメインネット(USDC)上のx402マイクロペイメントを使用します。必要なもの:
Baseメインネット上のUSDCを持つEVMウォレット
EVM_PRIVATE_KEYとして設定されたウォレットの秘密鍵
各呼び出しのコストは$0.01〜$0.05 USDCです。支払いは自動的に行われます — サブスクリプションやAPIキーは不要です。
支払いが設定されていませんか? サーバーがセットアップ手順を含む役立つエラーを返します。
アーキテクチャ
このパッケージは軽量なMCPクライアントです。すべての処理はホストされたバックエンドで行われます:
Your Agent / Claude Desktop
│
▼
feedback-synthesis-mcp (this package)
- MCP tool definitions
- x402 payment signing
- Zero business logic
│ HTTPS + x402
▼
Hosted Backend (Railway)
- Multi-source data collection
- 3-stage LLM pipeline (Haiku × N + Sonnet × 1)
- SQLite caching + FTS search
- x402 payment verificationサーバーコードは非公開(モート)です。軽量クライアントはオープンソースです。
ライセンス
MIT
Latest Blog Posts
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/sapph1re/feedback-synthesis-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server