Skip to main content
Glama

フィードバック統合 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_here

Claude 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つの顧客インテリジェンスツールが利用可能になります。


ツール

ツール

機能

価格

synthesize_feedback

マルチソース統合 → 証拠付きの優先順位付けされた課題クラスター

$0.05/回

get_pain_points

単一ソースからの迅速な課題抽出

$0.02/回

search_feedback

キャッシュされたフィードバック項目全体の全文検索

$0.01/回

get_sentiment_trends

ソース全体の時系列センチメント分析

$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マイクロペイメントを使用します。必要なもの:

  1. Baseメインネット上のUSDCを持つEVMウォレット

  2. 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

Install Server
A
security – no known vulnerabilities
A
license - permissive license
A
quality - A tier

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