@tuteliq/mcp 3.0.0 → 3.1.0
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.
- package/README.md +15 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1396 -0
- package/dist/src/formatters.d.ts.map +1 -1
- package/dist/src/formatters.js +4 -0
- package/dist-ui/action-plan.html +40 -23
- package/dist-ui/detection-result.html +41 -24
- package/dist-ui/emotions-result.html +39 -22
- package/dist-ui/media-result.html +40 -23
- package/dist-ui/multi-result.html +40 -23
- package/dist-ui/report-result.html +40 -23
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
Tuteliq MCP Server brings AI-powered child safety tools directly into Claude, Cursor, and other MCP-compatible AI assistants. Ask Claude to check messages for bullying, detect grooming patterns, or generate safety action plans.
|
|
28
28
|
|
|
29
|
-
## Available Tools (
|
|
29
|
+
## Available Tools (35)
|
|
30
30
|
|
|
31
31
|
### Safety Detection
|
|
32
32
|
|
|
@@ -94,6 +94,13 @@ Tuteliq MCP Server brings AI-powered child safety tools directly into Claude, Cu
|
|
|
94
94
|
| `get_breach` | Get details of a specific data breach |
|
|
95
95
|
| `update_breach_status` | Update breach status and notification progress |
|
|
96
96
|
|
|
97
|
+
### Verification
|
|
98
|
+
|
|
99
|
+
| Tool | Description |
|
|
100
|
+
|------|-------------|
|
|
101
|
+
| `verify_age` | Verify a user's age via document analysis, biometric estimation, or both. Methods: `document`, `biometric`, `combined`. Returns verified age range, confidence score, and minor status. Beta — requires Pro tier. 5 credits per call. |
|
|
102
|
+
| `verify_identity` | Confirm user identity with document authentication, face matching, and liveness detection. Returns match score, liveness result, and document authentication status. Beta — requires Business tier. 10 credits per call. |
|
|
103
|
+
|
|
97
104
|
---
|
|
98
105
|
|
|
99
106
|
## Installation
|
|
@@ -199,6 +206,13 @@ The message contains direct exclusionary language...
|
|
|
199
206
|
### Usage
|
|
200
207
|
> "Show my monthly usage"
|
|
201
208
|
|
|
209
|
+
### Age Verification
|
|
210
|
+
> "Verify the age of this user using their uploaded ID document"
|
|
211
|
+
> "Estimate this user's age from their selfie using biometric analysis"
|
|
212
|
+
|
|
213
|
+
### Identity Verification
|
|
214
|
+
> "Verify this user's identity by matching their selfie against their ID document"
|
|
215
|
+
|
|
202
216
|
---
|
|
203
217
|
|
|
204
218
|
## Get an API Key
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
|