Token导航 LogoToken导航TokenDH.com
Competitive Intelligence Agent MCP logo
运维云端未说明官方级别未说明来源级核验

Competitive Intelligence Agent MCP

MCP Server

一个AI驱动的竞争性价格调整系统,监控竞争对手价格并自动调整Stripe产品价格以保持竞争力。

工具数

0

提示词数

0

GitHub Stars

4

资源数

0
ClaudeAI代理云端部署Claude

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

ajeetraina

提供方

ajeetraina

最后核验

2026/5/17 20:21

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

详细介绍

竞争性再定价代理(MCP供电)

一个由人工智能驱动的竞争性重新定价系统,可以监控竞争对手的价格,并自动调整您的Stripe产品价格以保持竞争力。内置于 ChatGPT+Docker MCP工具包.

                    ┌─────────────────────────────────┐
                    │         USER REQUEST            │
                    │  "Stay competitive on pricing"  │
                    └───────────────┬─────────────────┘
                                    │
            ┌───────────────────────┴───────────────────────┐
            │                                               │
            ▼                                               ▼
┌───────────────────────────┐               ┌───────────────────────────┐
│      CLAUDE + MCP         │               │        CHATGPT            │
├───────────────────────────┤               ├───────────────────────────┤
│                           │               │                           │
│  🔥 Firecrawl  ──► SCRAPE │               │  💬 "You could use        │
│  🗄️ SQLite    ──► STORE   │               │      BeautifulSoup..."    │
│  💳 Stripe    ──► UPDATE  │               │                           │
│  🐙 GitHub    ──► AUDIT   │               │  💬 "Here's example       │
│  🧠 Thinking  ──► DECIDE  │               │      code for Stripe..."  │
│                           │               │                           │
├───────────────────────────┤               ├───────────────────────────┤
│         ACTION            │               │        ADVICE             │
│   (Actually does it)      │               │   (Tells you how)         │
└───────────────────────────┘               └───────────────────────────┘
            │                                               │
            ▼                                               ▼
┌───────────────────────────┐               ┌───────────────────────────┐
│  ✅ Price: $504.99        │               │  📋 Copy code             │
│  ✅ Stripe: Updated       │               │  📋 Set up environment    │
│  ✅ SQLite: Logged        │               │  📋 Configure APIs        │
│  ✅ GitHub: Committed     │               │  📋 Run manually          │
│                           │               │  📋 Debug errors          │
│  TIME: 2 minutes          │               │  TIME: Hours/Days         │
└───────────────────────────┘               └───────────────────────────┘

🎯 这有什么作用

此代理演示了ChatGPT无法单独复制的功能:

  • 监控竞争对手的价格 实时(亚马逊、百思买、沃尔玛)
  • 自动重新打印 您的Stripe产品将击败竞争对手
  • 记录所有决策 转到SQLite进行审计跟踪
  • 推送报告 转到GitHub以获取合规性

🔧 使用的MCP服务器

服务器用途
火爬从零售网站上删除竞争对手的价格
条纹自动更新您的产品价格
数据库商店定价历史和审计日志
GitHub推送重新定价报告以实现合规性
顺序思维复杂的定价策略决策
背景7最新的图书馆文档
Node.js沙盒统计计算

📊 最新演示结果

日期: 2025年12月9日\ 产品: MacBook Air M3 13英寸256GB

采取的重新定价行动

度量之前之后
您的价格549.99美元504.99美元
价格变动---45.00美元(-8.2%)
市场地位第三#1最低

竞争格局

零售商价格与我们的价格
我们的商店$504.99✅ 市场领导者
百思买509.99美元+5.00美元(我们赢了1%)
沃尔玛669.00美元上涨164.01美元
亚马逊699.00美元上涨194.01美元

应用策略:UNDERCUT

  • 触发: 百思买跌至509.99美元(低于我们的549.99美元)
  • 计算: $509.99 × 0.99 = $504.99
  • 结果: 我们现在的价格是最低的1%

🏗️ 建筑

User: "Monitor MacBook Air M3 prices and stay competitive"
     │
     ▼
┌────────────────────────────────────────────────────────────────┐
│                   ChatGPT repricing. I need to:                │
│   1. Scrape competitor prices (Firecrawl MCP)                  │
│   2. Store in database (SQLite MCP)                            │
│   3. Compare & decide strategy (Sequential Thinking MCP)       │
│   4. Update price (Stripe MCP)                                 │
│   5. Push audit report (GitHub MCP)"                           │
└────────────────────────────────────────────────────────────────┘
     │                                                      ▲
     ▼                                                      │
┌─────────────────────┐                                     │
│     MCP Servers     │                                     │
│                     │                                     │
│  • Firecrawl MCP ───┼──► Scrapes Amazon, Best Buy,        │
│                     │    Walmart prices                   │
│                     │                                     │
│  • SQLite MCP ──────┼──► Stores price_history,            │
│                     │    repricing_log                    │
│                     │                                     │
│  • Stripe MCP ──────┼──► Creates new price,               │
│                     │    updates product                  │
│                     │                                     │
│  • GitHub MCP ──────┼──► Pushes audit report,             │
│                     │    commit SHA tracking              │
│                     │                                     │
│  • Sequential ──────┼──► Analyzes pricing strategy,       │
│    Thinking MCP     │    makes reprice decision           │
│                     │                                     │
│  • Node.js MCP ─────┼──► Calculates margins,              │
│                     │    statistics, charts               │
│                     │                                     │
│  • Context7 MCP ────┼──► API docs, library                │
│                     │    references                       │
└─────────────────────┘                                     │
     │                                                      │
     ▼                                                      │
┌────────────────────────────────────────────────────────────┐
│                      RESULT                                │
│  ✅ Price updated: $549.99 → $504.99                       │
│  ✅ SQLite logged: repricing_log entry #1                  │
│  ✅ GitHub pushed: commit 64a488aa                         │
│  ✅ Market position: #1 LOWEST PRICE                       │
└────────────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────┐
│                     USER REQUEST                            │
│        "Monitor MacBook Air M3 and stay competitive"        │
└─────────────────────────┬───────────────────────────────────┘
                          │
                          ▼
┌─────────────────────────────────────────────────────────────┐
│              ChatGPT + MCP Gateway                          │
│           Orchestrates tools based on intent                │
└─────────────────────────┬───────────────────────────────────┘
                          │
        ┌─────────────────┼─────────────────┐
        │                 │                 │
        ▼                 ▼                 ▼
┌───────────────┐ ┌───────────────┐ ┌───────────────┐
│   FIRECRAWL   │ │    STRIPE     │ │    SQLITE     │
│ Scrape Prices │ │ Update Price  │ │  Log Decision │
└───────────────┘ └───────────────┘ └───────────────┘
        │                 │                 │
        └─────────────────┼─────────────────┘
                          │
                          ▼
┌─────────────────────────────────────────────────────────────┐
│                        GITHUB                                │
│              Push repricing report for audit                │
└─────────────────────────────────────────────────────────────┘

📁 项目结构

├── reports/
│   └── repricing/
│       └── 2025-12-09-macbook-air-m3-repricing.md   # Latest repricing report
└── README.md

🚀 如何使用

  1. 设置Docker MCP工具包 使用Firecrawl、Stripe、SQLite、GitHub服务器
  2. 连接ChatGPT 到您的MCP网关
  3. 使用此提示:
Set up a competitive repricing agent:
1. I sell MacBook Air M3 on my store - current Stripe price is $549.99
2. Monitor competitor prices on Amazon, Walmart, Best Buy
3. When ANY competitor drops below my price:
   - Automatically update my Stripe product price to match or beat them
   - Use "undercut" strategy (price 1% below lowest competitor)
   - Log the repricing decision to SQLite
   - Push pricing change report to GitHub

Start monitoring now.

🔗 相关

______________________________________________________________________

*由ChatGPT+Docker MCP工具包提供技术支持*

目录标签

目录标签

ClaudeAI代理云端部署价格监控本地部署自动化定价Stripe集成竞争对手分析AI决策

支持客户端

Claude

接入字段

传输方式(transport,传输协议)

未说明

鉴权方式(authType,认证方式)

none

工具数量(toolCount,工具数)

0

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

未说明none部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

仍需确认:installCommand

来源信息

继续浏览同类 MCP