Skip to content
MCP-Bridge
Developer Tools

Face Client MCP Config

An API for face detection, verification, and identification.

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcp-bridge.pages.dev/config/azure-com-cognitiveservices-face.json

Configuration JSON

Use curl https://mcp-bridge.pages.dev/config/azure-com-cognitiveservices-face.json to fetch programmatically.

{
  "mcpServers": {
    "azure-com-cognitiveservices-face": {
      "command": "npx",
      "args": ["-y","@mcp/azure-com-cognitiveservices-face"],
      "env": {
      "FACE_CLIENT_API_KEY": "your_face_client_api_key"
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcp-bridge.pages.dev/config/azure-com-cognitiveservices-face.json

Environment Variables

FACE_CLIENT_API_KEY

Replace your_face_client_api_key with your actual face client api key

Endpoints

POST/detect

Face_DetectWithUrl

GET/facelists

FaceList_List

GET/facelists/{faceListId}

FaceList_Get

PUT/facelists/{faceListId}

FaceList_Create

DELETE/facelists/{faceListId}

FaceList_Delete

PATCH/facelists/{faceListId}

FaceList_Update

POST/facelists/{faceListId}/persistedfaces

FaceList_AddFaceFromUrl

DELETE/facelists/{faceListId}/persistedfaces/{persistedFaceId}

FaceList_DeleteFace

POST/findsimilars

Face_FindSimilar

POST/group

Face_Group