压力
 ](https://www.npmjs.com/package/presso-mcp) 
Website · Get Started · Docs
概述
压力 是一个MCP服务器,它将您的电子商务和营销数据源(Shopify、Google Analytics 4、Google Ads、Meta Ads等)直接连接到Claude等人工智能助手。与其在仪表板之间切换,不如用自然语言提问,并立即获得有关商店绩效、广告活动和客户行为的答案。
MCP端点是一个远程HTTP服务器。大多数AI客户端(Claude Code、Claude Desktop、Cursor、VS Code)都可以直接连接。对于只支持stdio的客户端,一个轻量级的npm代理(presso-mcp)也可用。
特性
- 11数据源集成 --Shopify、GA4、谷歌广告、元广告、搜索控制台、谷歌商家中心、亚马逊广告、GTM、Klaviyo、ShipStation、Judge.me
- 100+工具 --产品、订单、客户、分析报告、广告活动、关键字分析、发货、评论等
- 跨平台分析 --在一次对话中跨Shopify+GA4+广告平台关联数据
- 自然语言查询 -不需要SQL或API知识。像问分析师一样问
- 实时数据 --在每次请求时从源API获取实时数据
- 只读访问 --Presso从不修改您的商店数据、广告活动或设置
- OAuth身份验证 --基于令牌的安全访问。Presso从不存储您的密码
- 在静止和传输过程中加密 --令牌采用AES-256加密,所有流量采用TLS 1.2+加密
- 无永久原始数据存储 --查询结果被流式传输到AI客户端,而不会被保留
支持的数据源
| 数据源 | 描述 | 工具 |
|---|---|---|
| Shopify | 产品、订单、客户、库存、付款、分析 | 25+ |
| 谷歌分析4 | 报告、维度、指标、实时数据、漏斗 | 5 |
| Google广告 | 活动、广告组、关键字、质量分数、ROAS | 7 |
| 元广告 | 活动、广告集、创意、受众洞察 | 9 |
| Google搜索控制台 | 搜索查询、排名、点击率、网站地图 | 3 |
| 谷歌商户中心 | 产品馈送、状态、诊断、价格竞争力 | 7 |
| 亚马逊广告 | 赞助产品/品牌/展示、搜索词、ACoS | 7 |
| Google 标签管理器 | 容器、标签、触发器、变量、版本 | 12 |
| 键盘 | 活动、流程、简介、细分市场、预测分析 | 18 |
| 船舶站 | 发货、标签、承运商、费率、库存、仓库 | 29 |
| Judge.me | 评论、评分、评论人简介、店铺统计 | 10 |
快速开始
1.创建您的Presso帐户
首选 app.presso.now/注册 并创建一个帐户。无需信用卡-每个帐户都有14天的免费试用期。
2.连接您的数据源
在Presso仪表板中,单击 添加连接,选择数据源(例如Shopify、GA4),并通过OAuth进行授权。对要查询的每个数据源重复此操作。
3.将Presso添加到您的MCP客户端
请参阅下面的配置部分以了解您的特定客户端。
MCP客户端配置
克劳德代码
打开终端并运行:
claude mcp add --transport http presso https://mcp.presso.now/mcp然后开始一个新的Claude Code会话:
claudeClaude Code将自动检测Presso的工具。试着问: "Show me my top-selling products from last week."
克劳德桌面版
- 打开克劳德桌面→ 设置 → 开发者 → 编辑配置.
- 将Presso添加到
mcpServers章节:
{
"mcpServers": {
"presso": {
"type": "http",
"url": "https://mcp.presso.now/mcp"
}
}
}- 保存并重新启动Claude Desktop。
光标
添加到光标MCP设置(.cursor/mcp.json):
{
"mcpServers": {
"presso": {
"url": "https://mcp.presso.now/mcp"
}
}
}VS代码(副本)
添加到您的VS代码设置(settings.json):
{
"mcp": {
"servers": {
"presso": {
"type": "http",
"url": "https://mcp.presso.now/mcp"
}
}
}
}通过npx进行stdio
对于仅支持stdio传输的MCP客户端,请使用 presso-mcp 代理:
npx -y presso-mcp或者在MCP客户端的JSON中配置它:
{
"mcpServers": {
"presso": {
"command": "npx",
"args": ["-y", "presso-mcp"],
"env": {
"PRESSO_API_KEY": "your-api-key"
}
}
}
}跑 npx presso-mcp setup 通过OAuth进行身份验证,或设置 PRESSO_API_KEY 环境变量。
可用工具
Shopify
shopify_list_products · shopify_get_product · shopify_list_orders · shopify_get_order · shopify_list_customers · shopify_get_customer · shopify_list_collections · shopify_list_inventory_items · shopify_list_discounts · shopify_list_fulfillment_orders · shopify_list_abandoned_checkouts · shopify_list_draft_orders · shopify_list_markets · shopify_list_returns · shopify_get_refund · shopify_list_order_risks · shopify_get_payments_account · shopify_list_balance_transactions · shopify_list_tender_transactions · shopify_list_segments · shopify_list_marketing_activities · shopify_get_shop_info · shopify_get_shop_alerts · shopify_get_custom_report
谷歌分析4
ga4_run_report · ga4_run_realtime_report · ga4_get_metadata · ga4_run_funnel_report · ga4_list_properties
Google广告
google_ads_run_report · google_ads_list_campaigns · google_ads_get_campaign · google_ads_list_ad_groups · google_ads_list_keywords · google_ads_list_ads · google_ads_list_accounts
元广告
meta_ads_run_report · meta_ads_list_campaigns · meta_ads_get_campaign · meta_ads_list_ad_sets · meta_ads_get_ad_set · meta_ads_list_ads · meta_ads_get_ad · meta_ads_list_accounts · meta_ads_get_ad_creatives
Google搜索控制台
search_console_query · search_console_list_sites · search_console_get_sitemaps
谷歌商户中心
gmc_list_products · gmc_get_product · gmc_get_product_status · gmc_list_product_statuses · gmc_get_account_status · gmc_list_account_issues · gmc_get_price_competitiveness
亚马逊广告
amazon_ads_list_campaigns · amazon_ads_get_campaign · amazon_ads_list_ad_groups · amazon_ads_get_campaign_report · amazon_ads_get_keyword_report · amazon_ads_get_search_term_report · amazon_ads_get_product_ads_report
Google 标签管理器
gtm_list_accounts · gtm_list_containers · gtm_get_container · gtm_list_tags · gtm_get_tag · gtm_list_triggers · gtm_get_trigger · gtm_list_variables · gtm_get_variable · gtm_list_workspaces · gtm_list_versions · gtm_get_version
键盘
klaviyo_list_campaigns · klaviyo_get_campaign · klaviyo_query_campaign_report · klaviyo_list_flows · klaviyo_get_flow · klaviyo_query_flow_report · klaviyo_list_profiles · klaviyo_get_profile · klaviyo_list_segments · klaviyo_get_segment · klaviyo_get_segment_profiles · klaviyo_list_lists · klaviyo_get_list · klaviyo_list_metrics · klaviyo_query_metric_aggregates · klaviyo_list_events · klaviyo_list_catalog_items · klaviyo_list_templates
船舶站
shipstation_get_shipments · shipstation_get_shipment_by_id · shipstation_get_shipment_rates · shipstation_get_labels · shipstation_get_label_by_id · shipstation_get_label_tracking · shipstation_track_package · shipstation_calculate_rates · shipstation_estimate_rates · shipstation_get_carriers · shipstation_get_carrier_by_id · shipstation_get_carrier_services · shipstation_get_carrier_package_types · shipstation_get_carrier_options · shipstation_get_inventory · shipstation_get_warehouses · shipstation_get_warehouse_by_id · shipstation_get_batches · shipstation_get_batch_by_id · shipstation_get_batch_errors · shipstation_get_manifests · shipstation_get_manifest_by_id · shipstation_get_tags · shipstation_get_packages · shipstation_get_package_by_id · shipstation_get_pickups · shipstation_get_pickup_by_id · shipstation_get_rate_by_id · shipstation_get_shipment_tags
Judge.me
judgeme_list_reviews · judgeme_get_review · judgeme_get_review_count · judgeme_get_reviewer · judgeme_get_shop_info · judgeme_get_settings · judgeme_get_all_reviews_count · judgeme_get_all_reviews_rating · judgeme_get_shop_reviews_count · judgeme_get_shop_reviews_rating
查询示例
Show me my top 10 best-selling products from the last 30 days.Compare Google Ads and Meta Ads ROAS for this month — which platform is performing better?Which products are running low on stock but had high sales last week?Show me daily sessions and conversion rate from GA4 for the past 14 days.Create a weekly performance report: revenue, orders, AOV, top products, and ad spend breakdown.运作原理
┌──────────────┐ ┌──────────────┐ ┌──────────────┐
│ AI Client │────>│ Presso │────>│ Data Sources │
│ (Claude, │<────│ MCP Server │<────│ (Shopify, │
│ Cursor, │ │ │ │ GA4, Ads, │
│ VS Code) │ │ │ │ etc.) │
└──────────────┘ └──────────────┘ └──────────────┘
Natural HTTP or stdio OAuth tokens
language MCP protocol per provider- 你在AI客户端中问一个问题。
- AI客户端根据您的请求调用Presso的MCP工具。
- Presso使用您存储的OAuth令牌对相关数据源进行身份验证。
- 数据被实时提取并返回给AI客户端。
- AI客户端将结果与分析和建议一起呈现。
定价
| 计划 | 价格 | 连接 | 最适合 |
|---|---|---|---|
| 自由 | $0/mo | 1个连接 | 试用Presso |
| 标准 | 49美元/月 | 3个连接 | 小商店 |
| 专业版 | 每月99美元 | 10个连接 | 业务增长 |
| 马克斯 | 199美元/月 | 无限制 | 代理商和企业 |
每个新帐户都以一个 14天免费试用 完全访问。看 presso.now/价格 了解详情。
安全与隐私
- 只读访问 --Presso从不修改您的商店数据、广告活动或设置
- OAuth 2.0 --基于令牌的安全身份验证。Presso永远不会看到或存储您的密码
- AES-256加密 --所有静态加密的OAuth令牌
- TLS 1.2+ --所有数据在传输过程中加密
- 无永久原始数据存储 --数据实时获取并流式传输到AI客户端
- 范围权限 --为每个数据源请求的最小必要权限
- 凭证隔离 --每个用户单独存储的令牌,从不在帐户之间共享
链接
- 网站: presso.now
- 应用程序/仪表板: app.presso现在
- 文档: presso.now/文档
- 服务条款: presso.now/条款
- 隐私政策: presso.now/隐私
- 技术支持: contact@stellagent.ai
许可证
麻省理工学院 -版权所有(c)2026 Stellagent股份有限公司。
