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"
      }
    }
  }
}

重启您的客户端。现在您可以使用四个客户智能工具了。


工具

工具

功能

价格

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