Skip to main content
Glama
QoreNext

Qorenext CRM MCP

Official

Qorenext CRM MCP

企業階層分析と住所検証 — MCP 経由

Qorenext CRM MCP は、Claude やその他の AI クライアントがチャット上で直接、企業階層分析と住所検証を実行できるようにする Model Context Protocol サーバーです。


API キーを取得する

https://qorenext-app.azurewebsites.net/signup にサインアップして、QORENEXT_API_KEY を取得してください。


Related MCP server: ENTIA Entity Verification

接続

Claude Code

claude mcp add --transport http qorenext-mcp \
  "https://mcp.qorenext.com/crm" \
  --header "X-API-Key: YOUR_API_KEY"

Claude Desktop

%APPDATA%\Claude\claude_desktop_config.json(Windows)または ~/Library/Application Support/Claude/claude_desktop_config.json(Mac)を編集します:

{
  "mcpServers": {
    "qorenext-mcp": {
      "url": "https://mcp.qorenext.com/crm",
      "headers": {
        "X-API-Key": "YOUR_API_KEY",
        "Content-Type": "application/json",
        "Accept": "application/json"
      }
    }
  }
}

Cursor / Windsurf

.cursor/mcp.json または .windsurf/mcp.json に追加します:

{
  "mcpServers": {
    "qorenext-mcp": {
      "url": "https://mcp.qorenext.com/crm",
      "headers": {
        "X-API-Key": "YOUR_API_KEY"
      }
    }
  }
}

ツール

ツール

認証

説明

health_check

❌ 公開

サーバーが実行中か確認し、バージョン情報を取得します

submit_address_verification

✅ API キー

住所検証と妥当性確認のために企業を送信します

submit_hierarchy_creation

✅ API キー

トップ親会社と子会社の関係を含む企業階層分析のために企業を送信します

submit_duplicates

✅ API キー

重複検出のために JSON、CSV、または Excel ファイルから CRM アカウントレコードを送信します

get_request_status

✅ API キー

住所検証、階層分析、または重複検出リクエストのステータスをポーリングし、結果を取得します


health_check

サーバーが実行中かどうかを確認します。API キーは不要です。

check if Qorenext CRM MCP is running

submit_address_verification

住所検証と正当性確認のために企業を送信します。

エンティティごとの必須項目: companyNamecountryaddress

任意項目: crmidwebsite

verify Acme Corp at 123 Main Street, New York, USA
validate Apple Inc at 1 Apple Park Way, Cupertino, USA
check Samsung at Samsung Tower, Seoul, South Korea

submit_hierarchy_creation

親子関係を特定するため、トップ親会社と子会社の関係を含む企業階層分析のために企業を送信します。

エンティティごとの必須項目: companyNamecountry

任意項目: crmidaddresswebsite

create hierarchy for Acme Corp from USA
analyze organizational structure for Apple Inc from USA
map corporate relationships for Samsung from South Korea

submit_duplicates

重複検出のために、ファイル(JSON、CSV、または Excel)から重複アカウントレコードを送信します。

必須: file_contentfile_type

任意: file_name

サポートされているファイルタイプ:

  • json - JSON 配列形式

  • csv - ヘッダー付きカンマ区切り値

  • excel または xlsx - Microsoft Excel ワークブック

必須フィールド(CSV および Excel ファイルのレコードごと):

  • crmAccountId - アカウント識別子

  • crmAccountName - アカウント/会社名

  • addressLine1 - 番地

  • country - 国名

任意フィールド:

  • addressLine2 - 部屋番号、アパート名、ユニットなど

  • city - 市区町村名

  • stateProvince - 州または都道府県

  • postalCode - ZIP/郵便番号

  • website - Web サイトの URL

ファイル形式の要件:

JSON 配列:

[
  {
    "crmAccountId": "CRM-00001",
    "crmAccountName": "Acme Technologies",
    "addressLine1": "123 Main Street",
    "addressLine2": "Suite 100",
    "city": "New York",
    "stateProvince": "NY",
    "country": "United States",
    "postalCode": "10001",
    "website": "www.acmetech.com"
  },
  {
    "crmAccountId": "CRM-00002",
    "crmAccountName": "Blue Ridge Software",
    "addressLine1": "456 Oak Avenue",
    "country": "United States"
  }
]

ヘッダー付き CSV:

crmAccountId,crmAccountName,addressLine1,city,stateProvince,country,postalCode,website
CRM-00001,Acme Technologies,123 Main Street,New York,NY,United States,10001,www.acmetech.com
CRM-00002,Blue Ridge Software,456 Oak Avenue,Los Angeles,CA,United States,90001,www.blueridgesoftware.com

Excel ワークブック:

  • 最初の行: 列ヘッダー

  • データ行: アカウントレコード

  • 必須列: crmAccountId、crmAccountName、addressLine1、country

  • 任意列: addressLine2、city、stateProvince、postalCode、website

例:

submit deduplication for CSV file with 50 company records
detect duplicates from Excel file of CRM accounts
process JSON file to find similar companies

戻り値:

  • data: 検出された重複ペアの数

  • message: 結果の説明

  • details: レコード数と重複ペア数

応答例(ステータス 200):

{
  "success": true,
  "status_code": 200,
  "data": 66,
  "message": "Successfully detected 66 duplicate pairs from 8 records",
  "details": {
    "records_submitted": 8,
    "duplicate_pairs_found": 66,
    "file_name": "accounts.csv",
    "file_type": "csv"
  }
}

get_request_status

CRM 処理リクエストのステータスと結果をポーリングします。

パラメータ: request_id(int)

ステータス値: PENDING · PROCESSING · COMPLETE · FAILED

get status of request 1001
check if CRM request 5042 is complete

ワークフロー例

住所検証:

You:    Verify Apple Inc at 1 Apple Park Way, Cupertino, USA.

Claude: [calls submit_address_verification]
        ✅ Submitted. Entity ID: 1042

You:    Get status of request 1042

Claude: [calls get_request_status]
        Status: COMPLETE
        Address Verified: ✅ Yes
        Business Status: ACTIVE

階層作成:

You:    Create hierarchy for Acme Corp from USA.

Claude: [calls submit_hierarchy_creation]
        ✅ Submitted. Entity ID: 1043

You:    Get status of request 1043

Claude: [calls get_request_status]
        Status: COMPLETE
        Hierarchy: Acme Corp → Acme Holdings (USA) → GlobalCorp (UK)

サポート


ライセンス

MIT

F
license - not found
Not graded
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Give your AI agent access to 60M+ companies and 300M+ verified contacts. Enrich leads, find work emails, discover tech stacks, and identify buying intent — directly from Claude, Cursor, Windsurf, or any MCP-compatible AI agent.
    11
    27
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    A Bloomberg Terminal you can talk to. Query company relationships — suppliers, customers, competitors, supply chain paths — directly from Claude, Cursor, or any MCP-compatible AI assistant.
    7
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables B2B prospecting from natural language: detect buying signals, score leads against ICP, enrich decision-makers, and draft personalized outreach messages via Claude.
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • Connect your team's living knowledge base — docs, data, issues, CRM — to Claude and ChatGPT.

  • US public-records intelligence for AI agents — companies, SEC, courts, spending, licenses.

  • Search companies, enrich contacts, and reveal emails and phones from your AI agent.

View all MCP Connectors

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/QoreNext/qorenext-crm-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server