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

Windows에서는 %APPDATA%\Claude\claude_desktop_config.json 파일을, Mac에서는 ~/Library/Application Support/Claude/claude_desktop_config.json 파일을 편집하세요:

{
  "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

❌ Public

서버가 실행 중인지 확인하고 버전 정보를 가져옵니다

submit_address_verification

✅ API Key

주소 검증 및 유효성 확인을 위해 회사를 제출합니다

submit_hierarchy_creation

✅ API Key

최상위 모회사 및 자회사 관계를 포함한 기업 계층 구조 분석을 위해 회사를 제출합니다

submit_duplicates

✅ API Key

중복 감지를 위해 JSON, CSV 또는 Excel 파일에서 CRM 계정 레코드를 제출합니다

get_request_status

✅ API Key

주소 검증, 계층 구조 분석 또는 중복 감지 요청의 상태를 조회하고 결과를 가져옵니다


health_check

서버가 실행 중인지 확인합니다. API 키가 필요 없습니다.

check if Qorenext CRM MCP is running

submit_address_verification

주소 검증 및 적법성 확인을 위해 회사를 제출합니다.

엔티티별 필수 항목: companyName, country, address

선택 사항: crmid, website

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

최상위 모회사 및 자회사 관계를 포함한 기업 계층 구조 분석을 위해 회사를 제출하여 모회사-자회사 관계를 식별합니다.

엔티티별 필수 항목: companyName, country

선택 사항: crmid, address, website

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_content, file_type

선택 사항: file_name

지원되는 파일 형식:

  • json - JSON 배열 형식

  • csv - 헤더가 있는 쉼표로 구분된 값

  • excel 또는 xlsx - Microsoft Excel 통합 문서

필수 필드(CSV 및 Excel 파일의 레코드별):

  • crmAccountId - 계정 식별자

  • crmAccountName - 계정/회사 이름

  • addressLine1 - 도로명 주소

  • country - 국가 이름

선택 필드:

  • addressLine2 - 스위트, 아파트, 유닛 등

  • city - 도시 이름

  • stateProvince - 주(State) 또는 도(Province)

  • 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: 레코드 수 및 중복 쌍 수

예시 응답(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

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