MCP server intelligence profile

eKYC Suite MCP Server

Provides 8 financial-grade KYC identity verification tools for AI agents, including face comparison, liveness detection, document OCR, and risk media labeling

Local OnlyOfficial distributionwefi-ai
Verified cleanNpm · 1.2.14

Our scanner tested version 1.2.14 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

1Distribution channel
8Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install @wefi-ai/ekyc-suite-mcp from npm

Install exact version 1.2.14. No verified executable entrypoint is available, so use the package documentation to launch it.

npm install --save-exact @wefi-ai/ekyc-suite-mcp@1.2.14

Identity

Canonical slugekyc-suite-mcp-server-9bf9092cDeploymentLocal Only
Canonical packagenpm:@wefi-ai/ekyc-suite-mcpRepositorywefi-ai/eKYC-Suite
First publishedJul 24, 2026Latest releaseJul 24, 2026
Last security verificationAug 22, 2026Classification confidence90%
PublicationPublishedOfficial distributionYes

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@wefi-ai/ekyc-suite-mcp1.2.142Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@wefi-ai/ekyc-suite-mcp1.2.14CurrentSep 5, 20268 toolsSucceeded · 0 resources · 0 promptsVerified clean
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

Provenanceartifact_hash_verifiedSignature
MCP SDKArtifact SHA-256f7c8dccbb7a4564db84d94dbab4d26e4dabf4c1f5ca993087e09b2230e0c63bb
Scannermcp-proof-engine 0.1.0Scan completedAug 22, 2026
Security ratingMethodology
0Proven
688Clean
0Inconclusive
0Flaky
0Errors

Current protocol inventory

2025-06-18Negotiated protocol
ekyc-suiteServer-reported name
1Capability groups
Aug 22, 2026Observed

Tools 8

ToolCategoryAnnotationsRisk
bank_card_ocrExtract card number and expiry date from a bank card.
Input schema
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "image": {
      "type": "string",
      "minLength": 1,
      "maxLength": 28000000,
      "description": "Bank card image"
    }
  },
  "required": [
    "image"
  ]
}
driver_license_ocrExtract structured fields from the main page of a Chinese driver's license.
Input schema
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "image": {
      "type": "string",
      "minLength": 1,
      "maxLength": 28000000,
      "description": "Driver license image"
    }
  },
  "required": [
    "image"
  ]
}
face_compareCompare two face photos and return a 0-100 similarity score for identity verification.
Input schema
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "photo1": {
      "type": "string",
      "minLength": 1,
      "maxLength": 28000000,
      "description": "First face photo: local path in stdio mode, public HTTPS URL, or base64"
    },
    "photo2": {
      "type": "string",
      "minLength": 1,
      "maxLength": 28000000,
      "description": "Second face photo"
    },
    "sourcePhotoType": {
      "type": "string",
      "enum": [
        "1",
        "2"
      ],
      "default": "2"
    }
  },
  "required": [
    "photo1",
    "photo2"
  ]
}
id_card_ocrExtract structured fields from a Chinese national ID card.
Input schema
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "image": {
      "type": "string",
      "minLength": 1,
      "maxLength": 28000000,
      "description": "ID card image"
    },
    "side": {
      "type": "string",
      "enum": [
        "0",
        "1"
      ],
      "default": "0",
      "description": "0=portrait side, 1=emblem side"
    }
  },
  "required": [
    "image"
  ]
}
media_labelingDetect selected portrait and environment risk labels in an image or video.
Input schema
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "file": {
      "type": "string",
      "minLength": 1,
      "maxLength": 28000000,
      "description": "Image or video"
    },
    "labels": {
      "type": "string",
      "pattern": "^[AB][0-9]{2}(,[AB][0-9]{2}){0,4}$",
      "description": "1-5 comma-separated label codes"
    },
    "type": {
      "type": "string",
      "enum": [
        "image",
        "video"
      ],
      "default": "image"
    },
    "doLive": {
      "type": "string",
      "enum": [
        "0",
        "1"
      ],
      "default": "1"
    },
    "doCompare": {
      "type": "string",
      "enum": [
        "0",
        "1"
      ],
      "default": "1"
    }
  },
  "required": [
    "file",
    "labels"
  ]
}
photo_liveness_detectDetect forged, replayed, AI-generated, or deepfake face photos.
Input schema
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "file": {
      "type": "string",
      "minLength": 1,
      "maxLength": 28000000,
      "description": "Face photo"
    }
  },
  "required": [
    "file"
  ]
}
vehicle_license_ocrExtract structured fields from a Chinese vehicle license.
Input schema
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "image": {
      "type": "string",
      "minLength": 1,
      "maxLength": 28000000,
      "description": "Vehicle license image"
    },
    "side": {
      "type": "string",
      "enum": [
        "1",
        "2"
      ],
      "default": "1",
      "description": "1=main page, 2=supplementary page"
    }
  },
  "required": [
    "image"
  ]
}
video_liveness_detectDetect deepfake or replayed face videos up to 20 seconds and 20MB.
Input schema
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "file": {
      "type": "string",
      "minLength": 1,
      "maxLength": 28000000,
      "description": "Face video"
    }
  },
  "required": [
    "file"
  ]
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

eKYC Suite MCP Server questions

How do I install eKYC Suite MCP Server?

Install the selected package version with: npm install --save-exact @wefi-ai/ekyc-suite-mcp@1.2.14

What tools does eKYC Suite MCP Server provide?

eKYC Suite MCP Server exposed 8 tools during independent protocol observation, including bank_card_ocr, driver_license_ocr, face_compare, id_card_ocr, media_labeling, photo_liveness_detect, vehicle_license_ocr, video_liveness_detect.

Is eKYC Suite MCP Server secure?

Our scanner tested version 1.2.14 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP ServersMCP Servers With Completed Verification

Let’s talk about MCP security.

Share your details and our security team will contact you.