@vettly/mcp 0.1.7 → 0.1.8

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/README.md +10 -10
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,17 +1,17 @@
1
1
  # @vettly/mcp
2
2
 
3
- MCP server for App Store Guideline 1.2 compliance. Enables AI assistants to make policy-governed, auditable content decisions.
3
+ MCP server for UGC moderation. Enables AI assistants to make policy-governed, auditable content decisions.
4
4
 
5
- ## App Store Guideline 1.2
5
+ ## UGC Moderation Essentials
6
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:
7
+ Apps with user-generated content need four things to stay compliant and keep users safe. The MCP server lets AI assistants participate in all four:
8
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` |
9
+ | Requirement | MCP Integration |
10
+ |-------------|-----------------|
11
+ | **Content filtering** | `moderate_content` tool |
12
+ | **User reporting** | `get_recent_decisions` tool (review flagged content) |
13
+ | **User blocking** | Pair with server-side SDK (`POST /v1/blocks`) |
14
+ | **Audit trail** | Every tool response includes `decisionId` |
15
15
 
16
16
  ```
17
17
  Prompt: "Check if this user comment is safe for our app: 'Great product!'
@@ -53,7 +53,7 @@ Add to your `claude_desktop_config.json`:
53
53
  "command": "npx",
54
54
  "args": ["-y", "@vettly/mcp"],
55
55
  "env": {
56
- "VETTLY_API_KEY": "sk_live_xxx"
56
+ "VETTLY_API_KEY": "vettly_live_xxx"
57
57
  }
58
58
  }
59
59
  }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@vettly/mcp",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "mcpName": "io.github.code-with-brian/vettly",
5
- "description": "MCP server for content moderation with Claude and Cursor. App Store policy testing.",
5
+ "description": "MCP server for content moderation with Claude and Cursor. Content moderation policy testing.",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
8
8
  "types": "./dist/index.d.ts",