@ultimat3/mcp 5.0.1 → 7.0.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/package.json +8 -8
- package/src/audit.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ultimat3/mcp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "MCP server, dev tools, and the action-to-tool projection — one authz system, two surfaces",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
"test": "bun test"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@ultimat3/action": "
|
|
35
|
-
"@ultimat3/core": "
|
|
36
|
-
"@ultimat3/entity": "
|
|
37
|
-
"@ultimat3/jobs": "
|
|
38
|
-
"@ultimat3/policy": "
|
|
39
|
-
"@ultimat3/query": "
|
|
40
|
-
"@ultimat3/schema": "
|
|
34
|
+
"@ultimat3/action": "7.0.0",
|
|
35
|
+
"@ultimat3/core": "7.0.0",
|
|
36
|
+
"@ultimat3/entity": "7.0.0",
|
|
37
|
+
"@ultimat3/jobs": "7.0.0",
|
|
38
|
+
"@ultimat3/policy": "7.0.0",
|
|
39
|
+
"@ultimat3/query": "7.0.0",
|
|
40
|
+
"@ultimat3/schema": "7.0.0"
|
|
41
41
|
}
|
|
42
42
|
}
|
package/src/audit.ts
CHANGED
|
@@ -58,7 +58,7 @@ export interface McpAuditEntry {
|
|
|
58
58
|
* the whole enumeration surface; `invalid-args` is a well-behaved client misreading a schema,
|
|
59
59
|
* and an unexpected throw is the only `error` because it is the only one that is a bug.
|
|
60
60
|
*/
|
|
61
|
-
const LEVEL
|
|
61
|
+
const LEVEL = Object.freeze<Record<McpOutcome, 'info' | 'warn' | 'error'>>({
|
|
62
62
|
ok: 'info',
|
|
63
63
|
hidden: 'warn',
|
|
64
64
|
'scope-denied': 'warn',
|