NinjaPear ロゴ NinjaPear
Claude.ai、Claude Code、Cowork、Excel、PowerPoint に対応

B2Bデータの超能力を追加
Claudeへ

競合他社を監視し、アカウントをリサーチし、すべてのClaudeプラットフォーム全体で変更を追跡します。

無料で始める
Claude AI

Claude.ai Chat

競合他社を監視し、アカウントをリサーチし、変更を追跡 - すべて自然言語で。

Claude Sonnet 4.5
私は決済スタートアップの PM です。stripe.com、brex.com、ramp.com のブログ投稿とウェブサイトの変更を毎日モニタリングしてください。
使用済み create_feed: "Competitor Watch"
使用済み add_target ×3

完了!競合他社のモニタリングフィードを設定しました:

競合ウォッチ
毎日のモニタリング • 3 件のターゲット
Stripe
stripe.com
アクティブ
BX
brex.com
アクティブ
RP
ramp.com
アクティブ
ブログ投稿、プレスリリース、ウェブサイトの変更を監視します。要求時に更新を取得するか、RSSを通じて購読できます。

フィードが作成されました (3 クレジット)。各ターゲットは毎日モニタリングされます。「最新情報は?」といつでも尋ねて最新を取得してください。

明日 Stripe との商談があります。企業詳細、主要顧客、従業員数など、すべての情報を揃えてください。
使用済み get_company_details
使用済み get_customer_listing
使用済み get_employee_count

Stripe との商談前ブリーフィングをご用意しました:

Stripeロゴ
Stripe, Inc.
インターネットのための決済インフラ
業界
フィンテック
従業員
~10,000
本社
サンフランシスコ, CA
CEO
Patrick Collison
設立
2010
顧客が見つかりました
218

注目の顧客には以下が含まれます:

Shopify Shopify Amazon Amazon Google Google Figma Figma +214 件
Competitor Watch フィードの新着情報は?
使用済み consume_feed for "Competitor Watch"

競合他社ウォッチフィードの最新情報をお届けします:

Stripe Stripe 2時間前
New blog post: "Introducing Stripe Billing V3"
使用量ベースの料金、マルチ通貨サポート、改善された収益認識を備えた請求プラットフォームの大規模なオーバーホール。
BX
Brex 8 時間前
ウェブサイトの変更: 料金プランページを更新
無料プランを廃止し、AI による経費管理機能を備えた新しいエンタープライズプランを $12/ユーザー/月から導入。
RP
Ramp 1日前
New blog post: "Ramp raises $300M Series D"
$13B評価額での新しい資金調達ラウンド。調達とAP自動化に拡大予定。

最後のチェック以来 3 件のアップデートがあります。競争上の影響を要約しましょうか?

Claude に返信...

Claude Code

ターミナルからモニタリングパイプラインの構築、CRM のエンリッチ、メールアドレスの検証をすべて実行。

claude
> Set up a daily competitor monitoring pipeline using NinjaPear feeds. Track stripe.com, brex.com, and ramp.com. Post updates to our #competitors Slack channel.
Claude I'll create a monitoring script that uses NinjaPear's Feeds API to track your competitors and post updates to Slack via webhook.
Create scripts/competitor_monitor.py
+ from ninjapear import NinjaPearClient
+ import requests, os
+
+ np = NinjaPearClient(api_key=os.environ["NINJAPEAR_KEY"])
+ SLACK_WEBHOOK = os.environ["SLACK_WEBHOOK_URL"]
+
+ # Create feed + add targets (one-time setup)
+ feed = np.create_feed(name="Competitor Watch")
+ for domain in ["stripe.com", "brex.com", "ramp.com"]:
+ np.add_target(feed.id, website=domain)
+
+ # Daily cron: consume feed & post to Slack
+ def check_updates():
+ updates = np.consume_feed(feed.id)
+ for u in updates:
+ requests.post(SLACK_WEBHOOK, json={
+ "text": f"*{u.company}*: {u.title}\n{u.summary}"
+ })
Edit crontab
+ 0 9 * * * python /app/scripts/competitor_monitor.py
Done Competitor monitoring pipeline is set up. Runs daily at 9 AM and posts changes to #competitors on Slack. Feed creation costs 3 credits; daily consumption is 無料.
> Enrich our CRM database with company details for all accounts. Use NinjaPear.
Claude I'll create an enrichment script using NinjaPear's Company Details API to fill in industry, employee count, and HQ for every CRM account.
Create scripts/enrich_crm.py
+ import requests
+
+ def enrich(domain: str, api_key: str):
+ resp = requests.get(
+ "https://ninjapear.com/api/v1/company/details",
+ params={"website": f"https://{domain}"},
+ headers={"Authorization": f"Bearer {api_key}"}
+ )
+ return resp.json()
+
+ for account in crm.get_all_accounts():
+ data = enrich(account.domain, API_KEY)
+ account.update(
+ industry=data["industry"],
+ employee_count=data["employee_count"],
+ hq=data["headquarters"]
+ )
Done Created enrichment script. Run with: python scripts/enrich_crm.py. Cost: 2 credits per company.
> Add email validation to our signup form. Block disposable emails using NinjaPear.
Claude I'll add NinjaPear's disposable email check to your signup validation middleware.
Read src/middleware/validate.ts
Edit src/middleware/validate.ts
+ const resp = await fetch(
+ `https://ninjapear.com/api/v1/contact/disposable-email`,
+ {
+ method: "GET",
+ headers: { "Authorization": `Bearer ${API_KEY}` },
+ params: { email: userEmail }
+ }
+ );
+ const { is_disposable_email } = await resp.json();
+
+ if (is_disposable_email) {
+ throw new ValidationError("Please use a business email");
+ }
Done Signup form now rejects disposable emails. This check is 無料 (0 credits per call).

Claude Cowork

競合他社のモニタリング、アカウント調査、市場分析を任せて、洗練されたドキュメントを受け取りましょう。

コワークタスク

"Compile a weekly digest from my Competitor Watch feed"

ステータス
完了
使用されたNinjaPearツール
consume_feed
get_company_details ×3
期間
1分52秒

"Research Stripe before my meeting tomorrow"

ステータス
完了
使用されたNinjaPearツール
get_company_details
get_customer_listing
get_employee_count
期間
2分14秒

"Build a competitive analysis of Stripe vs Adyen vs Square"

ステータス
完了
使用されたNinjaPearツール
get_company_details ×3
get_employee_count ×3
get_customer_listing ×3
期間
4 分 38 秒

競合週次ダイジェスト

2026年2月24日の週、「Competitor Watch」フィードより

Stripe

Stripe

~10,000人の従業員 • サンフランシスコ
New blog post: "Introducing Stripe Billing V3"
使用量ベースの料金とマルチ通貨サポートを備えた大規模なオーバーホール。
ウェブサイトの変更: 開発者ドキュメントを更新
新しいAPI v3リファレンスとマイグレーションガイドが追加されました。
BX

Brex

~1,200人の従業員 • サンフランシスコ
ウェブサイトの変更: 料金プランページを更新
無料プランを廃止。新しいエンタープライズプランは $12/ユーザー/月。
RP

Ramp

~1,000人の従業員 • ニューヨーク
New blog post: "Ramp raises $300M Series D"
$13B の評価額。調達とAP自動化への拡大。

重要なポイント

  • Stripeは課金に大きく投資しており、当社の請求書作成モジュールへの潜在的な脅威です
  • Brex の無料プラン廃止はアップマーケット志向を示しており、SMB 顧客へのアプローチ機会となっています
  • Rampの新しい資金調達は、調達スペースへの拡大を加速します

Stripe: Company Brief

2月20日の会議に向けて準備完了

概要

Stripeはインターネットのための決済インフラストラクチャを構築するフィンテック企業です。2010年にPatrickとJohn Collisonによってサンフランシスコで設立され、スタートアップからFortune 500企業まで、数百万のビジネスに電力を供給しています。

重要な情報

従業員
~10,000
設立
2010
本社
SF, CA
業界
FinTech

注目の顧客

Shopify ロゴ Shopify Amazonロゴ Amazon Google ロゴ Google Figmaロゴ Figma Notionロゴ Notion +213 件

リーダーシップ

  • Patrick Collison, CEO & Co-Founder
  • John Collison, President & Co-Founder

競合分析

Stripe vs Adyen vs Square、2026年2月19日生成

メトリック Stripeロゴ Stripe AY Adyen SQ Square
設立 2010 2006 2009
従業員 ~10,000 ~4,200 ~12,000
本社 サンフランシスコ Amsterdam サンフランシスコ
顧客が見つかりました 218 89 156

顧客の重複

34
Stripe + Square重複
12
Stripe + Adyen重複
8
3つはすべて重複

Claude for Excel

リードリストの作成、ポートフォリオの追跡、投資家の重複分析を平易な言葉で。

NinjaPear_Leads.xlsx Portfolio_Tracker.xlsx Investor_Matrix.xlsx
A1 fx =CLAUDE("List Salesforce's customers ranked by employee count, include website, industry, and HQ") =CLAUDE("Track my portfolio companies and show latest activity from my monitoring feed") =CLAUDE("Find investors of Stripe, Notion, Figma, Shopify, Instacart and show overlap")
A - 企業 B - ウェブサイト C - 従業員 D - 業種 E - 本社
1 Toyota toyota.com 375,000 自動車 豊田市, 日本
2 Canon canon.com 180,000 電子機器 東京, 日本
3 Unilever unilever.com 128,000 消費財 London, UK
4 American Express americanexpress.com 77,000 金融サービス New York, NY
5 T-Mobile t-mobile.com 71,000 通信 Bellevue, WA
6 Philips philips.com 69,000 ヘルスケアテック Amsterdam, NL
7 Adidas adidas.com 59,000 小売 / アパレル Herzogenaurach, DE
8 Spotify spotify.com 9,800 メディア / ストリーミング Stockholm, SE
NinjaPear 経由で Salesforce の顧客データから生成された 142 行のうち 8 行を表示
A - 企業 B - ウェブサイト C - 従業員 D - 業種 E - 最新アップデート F - 最後に変更
1 Stripe stripe.com 10,000 FinTech Billing V3をリリース 2月24日
2 Notion notion.so 2,800 生産性 新しいAI機能ブログ投稿 2月23日
3 Figma figma.com 1,500 デザインツール 料金プランページを更新 2月22日
4 Shopify shopify.com 11,600 E コマース Shopify Editions を発表 2月21日
5 Anthropic anthropic.com 1,800 AI セーフティ Claude 4.5 ローンチ ブログ 2月20日
6 Instacart instacart.com 10,500 食料品テック 新しいパートナーシップページ 2月19日
NinjaPear モニタリング フィードからの最新アクティビティを含む 6 つのポートフォリオ企業を追跡
企業 Sequoia a16z Accel Tiger Global Ribbit Capital
1 Stripe
2 Notion
3 Figma
4 Shopify
5 Instacart
NinjaPear の get_customer_listing(投資家カテゴリ)から取得した投資家データ

Claude for PowerPoint

競合インテリジェンスとポートフォリオデータをプレゼン用スライドに変換。

Competitive_Battle_Card.pptx Portfolio_Review_Q1.pptx
競合バトルカード
Stripe vs Adyen vs Square
Stripeロゴ
Stripe
10,000 従業員
サンフランシスコ, CA
218 顧客
AY
Adyen
4,200 従業員
Amsterdam, NL
89 顧客
SQ
Square
12,000 従業員
サンフランシスコ, CA
156 顧客
NinjaPear API 経由で取得したデータ 2026年2月
ポートフォリオ健全性チェック
Q1 2026 ポートフォリオ企業トラッカー
Stripe
Stripe
10,000 従業員
成長中
Notion
Notion
2,800 従業員
成長中
Figma
Figma
1,500 従業員
安定
Shopify
Shopify
11,600 従業員
成長中
AN
Anthropic
1,800 従業員
成長中
IC
Instacart
10,500 従業員
安定
NinjaPear API + モニタリングフィード経由で取得したデータ Q1 2026

2分で稼働開始

3ステップ。クレジットカード不要。コード不要。

1

NinjaPear の無料アカウントを登録する

クレジットカード不要。すべてのツールを試すために10の無料クレジットを取得できます。

無料アカウントを作成する
NinjaPear NinjaPear
アカウントを作成する
••••••••••••
無料で始める
2

コネクター文字列をコピーする

に移動する Claude 統合ページ ダッシュボードでコネクター文字列をコピーします。

コネクター文字列
これをコピーして Claude に接続する
https://nubela.co/mcp/sse?api_key=sk-abc...xyz
コピー
3

Claudeに追加

アクセス カスタムコネクタを追加 Claude の設定で。コネクター文字列を貼り付けるだけ。完了。

カスタムコネクタを追加
NinjaPear
https://nubela.co/mcp/sse?api_key=sk-abc...xyz
コネクタを追加

NinjaPear を Claude に組み込む準備はできていますか?

無料で新規登録。2 分で Claude に接続。今すぐ構築を始めましょう。