@vettly/mcp 0.1.6 → 0.1.7
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 +28 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,24 @@
|
|
|
1
1
|
# @vettly/mcp
|
|
2
2
|
|
|
3
|
-
MCP server for
|
|
3
|
+
MCP server for App Store Guideline 1.2 compliance. Enables AI assistants to make policy-governed, auditable content decisions.
|
|
4
|
+
|
|
5
|
+
## App Store Guideline 1.2
|
|
6
|
+
|
|
7
|
+
Apple requires every iOS app with user-generated content to implement four things. The MCP server lets AI assistants participate in all four:
|
|
8
|
+
|
|
9
|
+
| Requirement | Guideline | MCP Integration |
|
|
10
|
+
|-------------|-----------|-----------------|
|
|
11
|
+
| **Content filtering** | 1.2.1 | `moderate_content` tool |
|
|
12
|
+
| **User reporting** | 1.2.2 | `get_recent_decisions` tool (review flagged content) |
|
|
13
|
+
| **User blocking** | 1.2.3 | Pair with server-side SDK (`POST /v1/blocks`) |
|
|
14
|
+
| **Audit trail** | — | Every tool response includes `decisionId` |
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
Prompt: "Check if this user comment is safe for our app: 'Great product!'
|
|
18
|
+
Use the app-store policy."
|
|
19
|
+
|
|
20
|
+
→ moderate_content returns decisionId, action: "allow", categories, scores
|
|
21
|
+
```
|
|
4
22
|
|
|
5
23
|
## Why MCP for Content Decisions?
|
|
6
24
|
|
|
@@ -279,6 +297,15 @@ abc-123 and explain why their content was blocked?
|
|
|
279
297
|
|
|
280
298
|
---
|
|
281
299
|
|
|
300
|
+
## Get Your API Key
|
|
301
|
+
|
|
302
|
+
1. Sign up at [vettly.dev](https://vettly.dev)
|
|
303
|
+
2. Go to Dashboard > API Keys
|
|
304
|
+
3. Create and copy your key
|
|
305
|
+
4. Set as `VETTLY_API_KEY` environment variable (see Configuration above)
|
|
306
|
+
|
|
307
|
+
---
|
|
308
|
+
|
|
282
309
|
## Links
|
|
283
310
|
|
|
284
311
|
- [vettly.dev](https://vettly.dev) - Sign up
|
package/package.json
CHANGED