QoreNextMCP

QoreNextMCP

Enables company hierarchy analysis and address verification through MCP, allowing submission of entities for screening, duplicate detection, and status polling.

Category
访问服务器

README

QorenextMCP

Company hierarchy analysis and address verification — via MCP

QorenextMCP is a Model Context Protocol server that enables Claude and other AI clients to perform company hierarchy analysis and address verification directly in chat.


Get your API key

Sign up at https://qorenext-app.azurewebsites.net/signup to get your QORENEXT_API_KEY.


Connect

Claude Code

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

Claude Desktop

Edit %APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (Mac):

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

Cursor / Windsurf

Add to .cursor/mcp.json or .windsurf/mcp.json:

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

Tools

Tool Auth Description
health_check ❌ Public Verify server is running, get version info
submit_entities ✅ API Key Submit companies for address verification or hierarchy creation
submit_duplicates ✅ API Key Submit duplicate entities from JSON, CSV, or Excel files
get_request_status ✅ API Key Poll status and retrieve results of any screening request

health_check

Verify the server is running. No API key required.

check if QorenextMCP is running

submit_entities

Submit companies for Hierarchy creation or Address verification.

Required per entity: entityName, country, address, screeningType ("Hierarchy" or "Address verification")

Optional: crmid, website

submit Acme Corp from USA for Hierarchy creation
submit Apple Inc from USA at 1 Apple Park Way, Cupertino for Address verification
submit Samsung from South Korea at Samsung Tower, Seoul for Address verification

submit_duplicates

Submit duplicate account records from files (JSON, CSV, or Excel) for deduplication detection.

Required: file_content, file_type

Optional: file_name

Supported File Types:

  • json - JSON array format
  • csv - Comma-separated values with headers
  • excel or xlsx - Microsoft Excel workbooks

Required Fields (per record):

  • crmAccountId - Account identifier
  • crmAccountName - Account/Company name
  • country - Country name

Optional Fields:

  • addressLine1 - Street address
  • addressLine2 - Suite, apt, unit, etc.
  • city - City name
  • stateProvince - State or Province
  • postalCode - ZIP/Postal code
  • website - Website URL

File Format Requirements:

JSON Array:

[
  {
    "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-00001-B",
    "crmAccountName": "Acme Tech",
    "addressLine1": "123 Main St",
    "city": "New York",
    "stateProvince": "NY",
    "country": "United States",
    "postalCode": "10001"
  }
]

CSV with Headers:

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 Workbook:

  • First row: Column headers
  • Data rows: Account records
  • Supports any of the field names listed above

Examples:

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

Returns:

  • data: Number of duplicate pairs detected
  • message: Description of results
  • details: Record count and duplicate pair count

Example Response (Status 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

Poll a screening request for status and results.

Parameter: request_id (int)

Status values: PENDING · PROCESSING · COMPLETE · FAILED

get status of request 1001
check if screening 5042 is complete

Example workflow

You:    Submit Acme Corp from USA for Hierarchy creation.

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

You:    Get status of request 1042

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

Support

  • Issues: https://github.com/QoreNext-IT/QoreNextMCP/issues
  • Email: support@qorenext.com
  • Docs: https://qorenext.com

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选