Skip to main content
Glama
QoreNext

Qorenext CRM MCP

Official

Qorenext CRM MCP

Unternehmenshierarchie-Analyse und Adressverifizierung — über MCP

Qorenext CRM MCP ist ein Model Context Protocol-Server, der es Claude und anderen KI-Clients ermöglicht, Unternehmenshierarchie-Analysen und Adressverifizierungen direkt im Chat durchzuführen.


API-Schlüssel erhalten

Registrieren Sie sich unter https://qorenext-app.azurewebsites.net/signup, um Ihren QORENEXT_API_KEY zu erhalten.


Related MCP server: ENTIA Entity Verification

Verbinden

Claude Code

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

Claude Desktop

Bearbeiten Sie %APPDATA%\Claude\claude_desktop_config.json (Windows) oder ~/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

Fügen Sie Folgendes zu .cursor/mcp.json oder .windsurf/mcp.json hinzu:

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

Tools

Tool

Authentifizierung

Beschreibung

health_check

❌ Öffentlich

Prüft, ob der Server läuft, und ruft Versionsinformationen ab

submit_address_verification

✅ API-Schlüssel

Reicht Unternehmen zur Adressverifizierung und -validierung ein

submit_hierarchy_creaction

✅ API-Schlüssel

Reicht Unternehmen zur Analys e der Unternehmenshierarchie ein, einschließlich Top-Parent- und Tochtergesellschaftsbeziehungen

submit_duplicates

✅ API-Schlüssel

Reicht CRM-Account-Datensätze aus JSON-, CSV- oder Excel-Dateien zur Duplikaterkennung ein

get_request_status

✅ API-Schlüssel

Fragt den Status ab und ruft Ergebnise für Adressverifizierungs-, Hierarchieanalys e- oder Duplikaterkennungsanfragen ab


health_check

Prüfen Sie, ob der Server läuft. Kein API-Schlüssel erforderlich.

check if Qorenext CRM MCP is running

submit_address_verification

Reichen Sie Unternehmen zur Adressverifizierung und Legitimitätsprüfung ein.

Erforderlich pro Entität: companyName, country, address

Optinal: 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_creaction

Reichen Sie Unternehmen zur Analys e der Unternehmenshierarchie ein, einschließlich Top-Parent- und Tochtergesellschaftsbeziehungen, um Mutter-Tochter-Beziehungen zu identifzieren.

Erforderlich pro Entität: companyName, country

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

Reichen Sie doppelte Account-Datensätze aus Dateien (JSON, CSV oder Excel) zur Duplikaterkennung ein.

Erforderlich: file_content, file_type

Optinal: file_name

Unterstützte Dateitypen:

  • json – JSON-Array-Format

  • csv – Kommagetrennte Werte mit Kopfzeilen

  • excel oder xlsx – Microsoft-Excel-Arbeitsmappen

Erforderliche Felder (pro Datensatz in CSV- und Excel-Dateien):

  • crmAccontId – Account-Kennung

  • crmAccountName – Account-/Unternehmensname

  • addressLine1 – Straßenadresse

  • country – Ländername

Optionale Felder:

  • addressLine2 – Suite, Wohnung, Einheit usw.

  • city – Stadtname

  • stateProvince – Bundesland oder Provinz

  • postalCode – PLZ/Postleitzahl

  • website – Website-URL

Dateiformatanforderungen:

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-00002",
    "crmAccountName": "Blue Ridge Software",
    "addressLine1": "456 Oak Avenue",
    "country": "United States"
  }
]

CSV mit Kopfzeilen:

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

  • Erste Zeile: Spaltenüberschriften

  • Datenzeilen: Account-Datensätze

  • Erforderliche Spalten: crmAccountId, crmAccountName, addressLine1, country

  • Optionale Spalten: addressLine2, city, stateProvince, postalCode, website

Beispiele:

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

Rückgabe:

  • data: Anzahl der erkannten Duplikatpaare

  • message: Beschreibung der Ergebnisse

  • details: Datensatzanzahl und Anzahl der Duplikatpaare

Beispielantwort (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

Fragen Sie den Status und die Ergebnisse einer CRM-Verarbeitungsanfrage ab.

Parameter: request_id (int)

Statuswerte: PENDING · PROCESSING · COMPLETE · FAILED

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

Beispielworkflow

Adressverifizierung:

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

Hierarchieerstellung:

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)

Support


Lizenz

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