Skip to main content
Glama
QoreNext

Qorenext Trade Screening MCP

Official

Qorenext Trade Screening MCP

제재 및 무역 스크리닝 실사 — MCP를 통해

Qorenext Trade screening MCP는 Claude 및 기타 AI 클라이언트가 채팅에서 직접 제재 스크리닝과 무역 스크리닝 실사를 실행할 수 있게 해주는 Model Context Protocol 서버입니다.


API 키 받기

**https://qorenext-app.azurewebsites.net/signup**에서 가입하여 QORENEXT_API_KEY를 받으세요.


Related MCP server: Vala-Fi MCP Server

연결

Claude Code

claude mcp add --transport http qorenext-mcp \
  "https://mcp.qorenext.com/tradescreening" \
  --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/tradescreening",
      "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/tradescreening",
      "headers": {
        "X-API-Key": "YOUR_API_KEY"
      }
    }
  }
}

도구

도구

인증

설명

health_check

❌ 공개

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

submit_sanctions_screening

✅ API 키

미국 제재 목록에 대해 엔터티를 제재 스크리닝에 제출합니다

submit_trade_screening

✅ API 키

무역 스크리닝 실사를 위해 회사를 제출합니다

get_trade_screening_status

✅ API 키

상태를 폴링하고 전체 실사 보고서를 가져옵니다


health_check

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

check if Qorenext Trade Screening MCP is running

submit_sanctions_screening

미국 제재 목록(OFAC, MEU, EntityList 등)에 대해 엔터티를 제재 스크리닝에 제출합니다.

엔터티별 필수: entityEnglishName 또는 entityNativeName (최소 하나)

선택: country, address

Screen Acme trading LLC أكمي للتجار at 123 Azadi Street, Tehran for sanctions 

반환: 제출된 각 엔터티에 대해 하나의 결과를 반환하며, 각 결과에는 matchFound, bestMatchScore, matches가 포함됩니다.

응답 예시(Status 200):

{
  "success": true,
  "status_code": 200,
  "data": [
    {
      "entityEnglishName": "Acme Trading LLC",
      "entityNativeName": "أكمي للتجارة",
      "country": "Iran",
      "address": "123 Azadi Street, Tehran",
      "matchFound": false,
      "bestMatchScore": 0,
      "matches": []
    }
  ],
  "message": ""
}

submit_trade_screening

무역 스크리닝 실사를 위해 회사를 제출합니다: 거부/제한 당사자 목록 확인, 레드 플래그 키워드 분석, 위험 평가, 부정 뉴스 발견 사항.

필수: address, website, 그리고 companyEnglishName 또는 companyNativeName (최소 하나)

선택: parentEntityEnglishName, parentEntityWebsite

Qore의 /trade-screening/add-company 엔드포인트는 내부적으로 이 도구가 요청하는 것 외에 여러 추가 필드(Labs, LabsWebsite, Department, DepartmentWebsite, Professors, Product, EndUse, ParentEntity, referenceNumber)를 요구합니다 — 도구가 자동으로 빈 문자열로 전송하므로 호출자가 직접 제공할 필요가 없습니다.

입력 예시:

{
  "companyEnglishName": "Changchun New Industries Optoelectronics Tech. Co., Ltd.",
  "companyNativeName": "长春新产业光电技术有限公司",
  "address": "No.888 Jinhu Road High-tech Zone, Changchun 130103, P.R.China",
  "website": "https://test.com",
  "parentEntityEnglishName": "",
  "parentEntityWebsite": ""
}

companyEnglishName이 제공되면 companyNativeName은 생략할 수 있습니다(반대의 경우도 마찬가지). parentEntityEnglishName/parentEntityWebsite는 선택 사항입니다.

run trade screening on Acme Corp at 1 Main St, https://acme.com
due-diligence check for Changchun New Industries Optoelectronics, https://cnilaser.com

반환:

  • data: 추적 ID(NativeId) — get_trade_screening_status와 함께 사용

  • message: 설명 또는 오류 메시지

응답 예시(Status 200):

{
  "success": true,
  "status_code": 200,
  "data": 424,
  "message": ""
}

알려진 문제(Qore 백엔드, 이 서버 아님): 현재 새 제출이 간헐적으로 "Object reference not set to an instance of an object." (status_code: 422) 오류와 함께 실패합니다 — 이는 Qore의 요청 처리 파이프라인에서 발생하는 서버 측 null 참조 예외로, 클라이언트 측 검증 문제가 아닙니다. 이미 알려진 회사의 중복 제출은 영향을 받지 않습니다. 2026-08-19 기준 라이브 API에 대한 직접 테스트를 통해 확인되었으며, Qore API 팀의 수정을 기다리고 있습니다.


get_trade_screening_status

무역 스크리닝 요청의 상태와 전체 실사 보고서를 폴링합니다.

매개변수: request_id (int) — submit_trade_screening이 반환한 NativeId

상태 값: Pending · Processing · Completed · Failed

get status of trade screening request 424
check if screening 322 is complete

output (위험 평가, 레드 플래그 발견 사항, 제한 당사자 일치, 권장 사항)은 statusCompleted인 경우에만 존재합니다.


예제 워크플로

제재 스크리닝:

You:    Screen Acme Trading LLC in Iran for sanctions.

Claude: [calls submit_sanctions_screening]
        ✅ Screened. No match found (score: 0)

무역 스크리닝:

You:    Run trade screening on Acme Corp, 1 Main St, https://acme.com

Claude: [calls submit_trade_screening]
        ✅ Submitted. Tracking ID: 424

You:    Get status of trade screening request 424

Claude: [calls get_trade_screening_status]
        Status: Completed
        Risk Level: Low
        Recommendation: Proceed with standard due diligence.

지원


라이선스

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
    Not graded
    quality
    D
    maintenance
    Trust Intelligence API - entity screening, sanctions, risk scoring, IBAN validation, and compliance checks via MCP
    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

View all related MCP servers

Related MCP Connectors

  • 100+ MCP tools for AI agents: content metadata, trade intelligence, business-expertise analysis.

  • OFAC sanctions screening for AI agents: screen names, wallets, entities against the SDN list.

  • The financial MCP for AI agents - 90+ financial tables, SEC filings, signals, alt-data.

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-tradescreening-mcp'

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