Skip to main content
Glama
QoreNext-IT

QoreNextMCP

Official
by QoreNext-IT

QorenextMCP

公司层级分析与地址验证 — 通过 MCP 实现

QorenextMCP 是一个 Model Context Protocol 服务器,使 Claude 和其他 AI 客户端能够在聊天中直接进行公司层级分析和地址验证。


获取您的 API 密钥

https://qorenext-app.azurewebsites.net/signup 注册,即可获取您的 QORENEXT_API_KEY


Related MCP server: Business Central MCP Server

连接

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 文件提交重复实体

get_request_status

✅ API 密钥

轮询任何筛查请求的状态并获取结果


health_check

验证服务器是否正在运行。无需 API 密钥。

check if QorenextMCP 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 - 带表头的逗号分隔值

  • excelxlsx - Microsoft Excel 工作簿

必填字段(CSV 和 Excel 文件中的每条记录):

  • crmAccountId - 账户标识符

  • crmAccountName - 账户/公司名称

  • addressLine1 - 街道地址

  • country - 国家名称

可选字段:

  • addressLine2 - 套房、公寓、单元等

  • city - 城市名称

  • stateProvince - 州或省

  • postalCode - 邮政编码

  • website - 网站 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

轮询筛查请求的状态和结果。

参数: request_id(整数)

状态值: PENDING · PROCESSING · COMPLETE · FAILED

get status of request 1001
check if screening 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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

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-IT/QoreNextMCP'

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