@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.
- package/README.md +10 -10
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
# @vettly/mcp
|
|
2
2
|
|
|
3
|
-
MCP server for
|
|
3
|
+
MCP server for UGC moderation. Enables AI assistants to make policy-governed, auditable content decisions.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## UGC Moderation Essentials
|
|
6
6
|
|
|
7
|
-
|
|
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 |
|
|
10
|
-
|
|
11
|
-
| **Content filtering** |
|
|
12
|
-
| **User reporting** |
|
|
13
|
-
| **User blocking** |
|
|
14
|
-
| **Audit trail** |
|
|
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": "
|
|
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.
|
|
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.
|
|
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",
|