@pactosigna/mcp-server 0.1.20 → 0.1.22
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/dist/index.js +4 -2
- package/package.json +3 -1
package/dist/index.js
CHANGED
|
@@ -23364,7 +23364,9 @@ var FrameworkDefinitionSeedSchema = external_exports.object({
|
|
|
23364
23364
|
});
|
|
23365
23365
|
var ClauseBase = external_exports.object({
|
|
23366
23366
|
clauseNumber: external_exports.string().min(1),
|
|
23367
|
-
title: external_exports.string().min(1)
|
|
23367
|
+
title: external_exports.string().min(1),
|
|
23368
|
+
/** Clause-level scope override. When omitted, inherits from parent framework. */
|
|
23369
|
+
scope: FrameworkScopeSchema.optional()
|
|
23368
23370
|
});
|
|
23369
23371
|
function buildClauseSchema(remainingDepth) {
|
|
23370
23372
|
if (remainingDepth <= 0) {
|
|
@@ -25949,7 +25951,7 @@ var client = new PactoSignaApiClient({
|
|
|
25949
25951
|
apiKey: PACTOSIGNA_API_KEY
|
|
25950
25952
|
});
|
|
25951
25953
|
var server = new Server(
|
|
25952
|
-
{ name: "pactosigna", version: "0.1.
|
|
25954
|
+
{ name: "pactosigna", version: "0.1.22" },
|
|
25953
25955
|
{ capabilities: { tools: {} } }
|
|
25954
25956
|
);
|
|
25955
25957
|
server.setRequestHandler(ListToolsRequestSchema, async () => ({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pactosigna/mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "MCP server for PactoSigna QMS — connects Claude Desktop, Cursor, and other AI tools to your quality management system",
|
|
6
6
|
"bin": {
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
25
25
|
"tsup": "^8.0.0",
|
|
26
26
|
"typescript": "^5.7.2",
|
|
27
|
+
"vitest": "^3.0.0",
|
|
27
28
|
"zod": "^3.24.1",
|
|
28
29
|
"@pactosigna/schemas": "0.1.0"
|
|
29
30
|
},
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"build": "tsup",
|
|
47
48
|
"build:watch": "tsup --watch",
|
|
48
49
|
"typecheck": "tsc --noEmit",
|
|
50
|
+
"test": "vitest run",
|
|
49
51
|
"start": "node dist/index.js",
|
|
50
52
|
"clean": "rm -rf dist"
|
|
51
53
|
}
|