Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. Developer Tools
  3. Facesign MCP
F
Health: ActiveRecent health check succeeded.Last checked 8/26/2026, 10:31:24 PM

Facesign MCP

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository1 GitHub StarsTotal stargazers on GitHub for the source repository (1 stars).Visit Website

Build and test FaceSign step-up verification flows from your AI coding tool

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Remote HTTP
Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "facesign-mcp": {
      "url": "https://docs.facesign.ai"
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

Facesign SDK for Node JS

A simple and easy to use client for the Facesign API


Installation

Terminal
npm install @facesignai/api
yarn add @facesignai/api

Usage

Import and initialize a client using an integration token

server.ts
const { Client } = require("@facesignai/api")

// Initializing a client
const facesignClient = new Client({
  auth: process.env.FACESIGN_TOKEN,
})

Make a request to any Facesign API endpoint.

Flow & Nodes

A flow is a directed graph of nodes that defines a session. Sessions can serve different purposes β€” identity verification, data collection, authorization, analysis, or any combination. Every flow must start with a START node and end with one or more END nodes. Nodes connect to each other via outcomes β€” each outcome points to the id of the next node. All defined outcomes must be connected to other nodes; no outcome can be left unlinked.

START Node

The entry point of every flow. Each flow must have exactly one START node. It has a single outcome that points to the first node in the flow.

JSON Config
{
  id: "start",
  type: "start",
  outcome: "next-node-id"
}

END Node

The terminal node of a flow. A flow can have multiple END nodes (e.g., one for success path, one for failure path). It has no outcomes.

JSON Config
{
  id: "end-success",
  type: "end"
}

CONVERSATION Node

The avatar speaks to the user using the prompt text and routes the flow based on the user's response. The session stays on this node until one of the outcome conditions matches the user's response, so a single conversation node can facilitate a multi-turn dialog with the user until the desired information is gathered.

The prompt field supports two modes:

  1. Direct speech β€” Tell the avatar exactly what to say: "Say: Hi, how are you doing?"

  2. Goal-driven behavior β€” Describe what the avatar should achieve during the conversation: "Chat with the user and find out how well they understand medicine."

When using goal-driven prompts, always include realistic exit conditions in the outcomes, since the dialog could otherwise continue indefinitely. Examples of exit conditions:

  • User didn't respond after 3 attempts
  • The dialog has reached 6 exchanges and no condition was met
  • User refuses to answer

Uses conditional outcomes β€” each outcome has a condition (a natural language description of what the user's response should match) and a targetNodeId pointing to the next node.

Set doesNotRequireReply: true for nodes at the end of the flow where the avatar delivers a final message and no user response is needed (e.g., "Thank you for the conversation, goodbye!"). Typically used before an END node.

Outcomes use FSConditionalOutcome:

  • id β€” unique identifier for the outcome
  • targetNodeId β€” the node to navigate to
  • condition β€” natural language description of the matching criteria

Unconditional transition: When the avatar should say a phrase and move to the next node regardless of the user's response, use a single outcome with an empty condition (""). This creates an unconditional transition β€” the avatar delivers the message, and whatever the user replies (or even if they don't), the flow proceeds to targetNodeId.

Direct speech example:

JSON Config
{
  id: "greeting",
  type: "conversation",
  prompt: "Say: Hello! What would you like to do today?",
  outcomes: [
    { id: "verify", targetNodeId: "liveness-node", condition: "User wants to verify their identity" },
    { id: "info", targetNodeId: "info-node", condition: "User wants more information" }
  ]
}

Goal-driven example:

JSON Config
{
  id: "medical-assessment",
  type: "conversation",
  prompt: "Chat with the user and assess their level of medical knowledge.",
  outcomes: [
    { id: "high", targetNodeId: "advanced-path", condition: "User demonstrates strong medical knowledge" },
    { id: "low", targetNodeId: "basic-path", condition: "User has limited medical knowledge" },
    { id: "no-response", targetNodeId: "end-fail", condition: "User didn't respond after 3 attempts" },
    { id: "timeout", targetNodeId: "end-fail", condition: "Dialog reached 6 exchanges with no condition met" },
    { id: "refused", targetNodeId: "end-fail", condition: "User refuses to answer" }
  ]
}

End-of-flow example:

JSON Config
{
  id: "goodbye",
  type: "conversation",
  prompt: "Thank you for the conversation, goodbye!",
  doesNotRequireReply: true,
  outcomes: [
    { id: "done", targetNodeId: "end", condition: "" }
  ]
}

PERMISSIONS Node

Requests camera and/or microphone permissions from the user before proceeding. Use this node when you need to display a custom prompt explaining why permissions are needed, or when you want to handle the denied case with a specific flow path.

If the flow does not contain any PERMISSIONS node, permissions will be requested automatically.

  • permissions.camera β€” request camera access
  • permissions.microphone β€” request microphone access
  • prompt β€” optional message the avatar will say (uses direct speech mode, e.g., "Say: Could you please enable your microphone so I can hear you."). If the site already has permanent permissions granted, the avatar will not say this phrase and the flow will continue directly via the permissionsGranted outcome.

Outcomes:

  • permissionsGranted β€” user granted the requested permissions (or they were already granted)
  • permissionsDenied β€” user denied the permissions
JSON Config
{
  id: "request-permissions",
  type: "permissions",
  prompt: "Say: Could you please enable your camera and microphone so we can proceed.",
  permissions: {
    camera: true,
    microphone: true
  },
  outcomes: {
    permissionsGranted: "next-node-id",
    permissionsDenied: "end-denied"
  }
}

LIVENESS_DETECTION Node

Checks whether the user in front of the camera is a real person or a deepfake. The node analyzes the video feed to perform liveness detection.

Prerequisites: The user must have camera access granted before this node. Additionally, liveness detection requires several seconds of video recording for analysis. Do not place this node immediately after a PERMISSIONS node β€” instead, add a CONVERSATION node in between to give the system time to accumulate video data for analysis.

Recommended flow order: PERMISSIONS β†’ CONVERSATION β†’ LIVENESS_DETECTION

Outcomes:

  • livenessDetected β€” the user is a real person
  • deepfakeDetected β€” a deepfake or spoofing attempt was detected
  • noFace β€” no face was detected in the camera feed
JSON Config
{
  id: "liveness-check",
  type: "liveness_detection",
  outcomes: {
    livenessDetected: "next-node-id",
    deepfakeDetected: "end-fail",
    noFace: "end-fail"
  }
}

ENTER_EMAIL Node

Displays a UI for the user to enter their email address without any verification or confirmation step. Use this node when you simply need to collect an email from the user as data input. Note: if your goal is to collect AND verify an email via OTP, use TWO_FACTOR_EMAIL instead β€” it handles email collection internally and does not require a preceding ENTER_EMAIL node.

  • prompt β€” optional phrase the avatar will say at the moment the input field appears (e.g., "Could you please enter your email?").

Outcomes:

  • emailEntered β€” user submitted their email
  • canceled β€” user canceled the email entry
JSON Config
{
  id: "collect-email",
  type: "enter_email",
  prompt: "Could you please enter your email?",
  outcomes: {
    emailEntered: "next-node-id",
    canceled: "end-canceled"
  }
}

DATA_VALIDATION Node

Validates data collected during the session and routes the flow based on the result. Uses a validation object to specify which field to check, what action to perform, and an optional expected value.

  • validation.field β€” the data field to validate
  • validation.action β€” the validation action to perform
  • validation.value β€” optional expected value for comparison

Uses conditional outcomes (same as CONVERSATION node) to branch the flow based on the validation result.

JSON Config
{
  id: "check-email-domain",
  type: "data_validation",
  validation: {
    field: "email",
    action: "contains",
    value: "@company.com"
  },
  outcomes: [
    { id: "valid", targetNodeId: "next-node-id", condition: "Validation passed" },
    { id: "invalid", targetNodeId: "end-fail", condition: "Validation failed" }
  ]
}

DOCUMENT_SCAN Node

Opens a document scanning UI powered by Microblink. The user can scan identity documents using their camera. Extracted data (name, date of birth, document number, etc.) becomes available in the session report.

  • scanningMode β€” determines how to scan the document:
    • "single" β€” scan only one side of the document
    • "automatic" β€” automatically determine how many sides need to be scanned
  • allowedDocumentTypes β€” array of document types the user can scan (e.g., "passport", "id", "dl", "residence-permit", "visa", etc.)
  • showTorchButton β€” show flashlight toggle (default: true)
  • showCameraSwitch β€” show front/back camera toggle (default: true)
  • showMirrorCameraButton β€” show mirror camera button (default: true)

Outcomes:

  • scanSuccess β€” document was scanned successfully
  • userCancelled β€” user canceled the scan
  • scanTimeout β€” scan timed out
JSON Config
{
  id: "scan-id",
  type: "document_scan",
  scanningMode: "automatic",
  allowedDocumentTypes: ["passport", "id", "dl"],
  outcomes: {
    scanSuccess: "next-node-id",
    userCancelled: "end-canceled",
    scanTimeout: "end-fail"
  }
}

RECOGNITION Node

Performs biometric face recognition to identify the user. Compares the user's face against previously registered faces to determine if they are a known or new user.

Read the full README on GitHub β†’

Related MCP Servers

View all in Developer Tools View all alternatives
  • F
    Facesign MCP

    Build and test FaceSign step-up verification flows from your AI coding tool

    πŸ’» Developer Tools0 views
    Compare vs Facesign MCP β†’
  • Cypress Cloud MCP logoCypress Cloud MCP

    The Cypress Cloud MCP server brings Cypress test result context directly into your AI workflow.

    πŸ’» Developer Tools0 views
    Compare vs Cypress Cloud MCP β†’
  • PraisonAI logoPraisonAI

    AI Agents Framework with Self Reflection and MCP support

    πŸ’» Developer Tools1 views
    Compare vs PraisonAI β†’
  • Skill of Skills logoSkill of Skills

    Quality-ranked, cross-platform directory of AI coding skills, plugins and MCP servers.

    πŸ’» Developer Tools1 views
    Compare vs Skill of Skills β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Facesign MCP

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "facesign-mcp": { "command": "npx", "args": ["-y", "facesign-mcp"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewFacesign MCP AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/facesign-mcp?style=directory)](https://allmcps.com/mcp/facesign-mcp)
HTML Embed
<a href="https://allmcps.com/mcp/facesign-mcp"><img src="https://allmcps.com/api/badge/facesign-mcp?style=directory" alt="Facesign MCP on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSSE (Remote)
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars1
GitHub Star CountTotal stargazers on GitHub representing community popularity (1 stars).
Last commit5d ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Aug 21, 2026
npm downloads369/mo
Monthly npm DownloadsAverage monthly package installs recorded from npm registry statistics.
43Quality signal: Fair Β· 43/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools15/30
Adoption & activity7/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Facesign MCP β†’Install in Claude DesktopInstall in CursorInstall in VS Code