@vettly/mcp 0.1.2 → 0.1.4

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 +6 -6
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @vettly/mcp
2
2
 
3
- MCP (Model Context Protocol) server for Vettly content moderation API. Enables AI assistants like Claude to moderate content, validate policies, and review moderation decisions.
3
+ MCP server for Vettly decision infrastructure. Enables AI assistants to make governed, auditable decisions under explicit policy.
4
4
 
5
5
  ## Installation
6
6
 
@@ -39,7 +39,7 @@ Add to your `claude_desktop_config.json`:
39
39
 
40
40
  ### `moderate_content`
41
41
 
42
- Check content against a Vettly moderation policy.
42
+ Check content against a Vettly decision policy.
43
43
 
44
44
  **Parameters:**
45
45
  - `content` (required) - The content to moderate
@@ -70,20 +70,20 @@ rules:
70
70
 
71
71
  ### `list_policies`
72
72
 
73
- List all available moderation policies in your account.
73
+ List all available decision policies in your account.
74
74
 
75
75
  **Parameters:** None
76
76
 
77
77
  ### `get_usage_stats`
78
78
 
79
- Get usage statistics including request counts, costs, and moderation outcomes.
79
+ Get usage statistics including request counts, costs, and decision outcomes.
80
80
 
81
81
  **Parameters:**
82
82
  - `days` (optional) - Number of days to include (1-365, default: 30)
83
83
 
84
84
  ### `get_recent_decisions`
85
85
 
86
- Get recent moderation decisions with optional filtering.
86
+ Get recent decisions with optional filtering.
87
87
 
88
88
  **Parameters:**
89
89
  - `limit` (optional) - Number of decisions to return (1-50, default: 10)
@@ -95,7 +95,7 @@ Get recent moderation decisions with optional filtering.
95
95
 
96
96
  ### `vettly://policies`
97
97
 
98
- Read-only list of all available moderation policies.
98
+ Read-only list of all available decision policies.
99
99
 
100
100
  ### `vettly://policies/{policyId}`
101
101
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@vettly/mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "mcpName": "io.github.code-with-brian/vettly",
5
- "description": "MCP server for Vettly content moderation API",
5
+ "description": "MCP server for Vettly decision API. AI-powered content decisions with policy governance.",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
8
8
  "types": "./dist/index.d.ts",
@@ -52,7 +52,7 @@
52
52
  "license": "MIT",
53
53
  "repository": {
54
54
  "type": "git",
55
- "url": "https://github.com/brian-nextaura/vettly-docs.git",
55
+ "url": "https://github.com/nextauralabs/vettly-docs.git",
56
56
  "directory": "packages/mcp"
57
57
  },
58
58
  "homepage": "https://vettly.dev",
@@ -60,11 +60,11 @@
60
60
  "access": "public"
61
61
  },
62
62
  "bugs": {
63
- "url": "https://github.com/brian-nextaura/vettly-docs/issues"
63
+ "url": "https://github.com/nextauralabs/vettly-docs/issues"
64
64
  },
65
65
  "dependencies": {
66
66
  "@modelcontextprotocol/sdk": "^1.12.0",
67
- "@vettly/sdk": "workspace:*",
67
+ "@vettly/sdk": "^0.2.3",
68
68
  "zod": "^3.22.4"
69
69
  },
70
70
  "devDependencies": {