ayphic-mcp-server 1.2.1 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -322,7 +322,7 @@ const MCP_TOOLS = [
322
322
  },
323
323
  {
324
324
  name: 'body_detection',
325
- description: 'Perception tool: Detect human bodies, faces, postures, bounding boxes, full head-to-toe continuous skeletons, and exact coordinates on canvas.',
325
+ description: 'Perception tool: Detect human bodies, faces, postures, bounding boxes, full head-to-toe continuous skeletons, and exact coordinates on canvas. Runs via Gemini Vision server-side when called through MCP — returns bounding boxes in 0-1000 coordinate space and normalized 0..1 bounds. Use "part" to target a specific body part (face, torso, hands, etc.) or omit for full body detection.',
326
326
  inputSchema: {
327
327
  type: 'object',
328
328
  properties: {
@@ -344,7 +344,7 @@ const MCP_TOOLS = [
344
344
  },
345
345
  {
346
346
  name: 'check_face_overlap',
347
- description: 'Check if timeline elements (CTAs, text, stickers) occlude any detected faces on the video canvas and return safe position coordinates.',
347
+ description: 'Check if timeline elements (CTAs, text, stickers) occlude any detected faces on the video canvas and return safe position coordinates. Runs via Gemini Vision server-side when called through MCP — returns face bounding boxes (0-1000 coords) and suggested safe alternative positions for overlapping elements.',
348
348
  inputSchema: {
349
349
  type: 'object',
350
350
  properties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ayphic-mcp-server",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Model Context Protocol (MCP) Server for Ayphic AI Video Editor",
5
5
  "main": "index.js",
6
6
  "type": "module",