@pactosigna/mcp-server 0.1.19 → 0.1.21
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 +13 -2
- package/package.json +3 -1
package/dist/index.js
CHANGED
|
@@ -23811,7 +23811,18 @@ var DocumentSignoffStatusResponseSchema = external_exports.object({
|
|
|
23811
23811
|
var DocumentExportResponseSchema = external_exports.object({
|
|
23812
23812
|
message: external_exports.string()
|
|
23813
23813
|
});
|
|
23814
|
-
var CompiledDocumentPresetSchema = external_exports.enum([
|
|
23814
|
+
var CompiledDocumentPresetSchema = external_exports.enum([
|
|
23815
|
+
"srs",
|
|
23816
|
+
"prs",
|
|
23817
|
+
"dmr",
|
|
23818
|
+
"risk",
|
|
23819
|
+
"hld",
|
|
23820
|
+
"sdd",
|
|
23821
|
+
"vv",
|
|
23822
|
+
"uef",
|
|
23823
|
+
"csf",
|
|
23824
|
+
"cer"
|
|
23825
|
+
]);
|
|
23815
23826
|
var CompiledDocumentQuerySchema = external_exports.object({
|
|
23816
23827
|
organizationId: external_exports.string().min(1),
|
|
23817
23828
|
repositoryId: external_exports.string().min(1).optional(),
|
|
@@ -25938,7 +25949,7 @@ var client = new PactoSignaApiClient({
|
|
|
25938
25949
|
apiKey: PACTOSIGNA_API_KEY
|
|
25939
25950
|
});
|
|
25940
25951
|
var server = new Server(
|
|
25941
|
-
{ name: "pactosigna", version: "0.1.
|
|
25952
|
+
{ name: "pactosigna", version: "0.1.21" },
|
|
25942
25953
|
{ capabilities: { tools: {} } }
|
|
25943
25954
|
);
|
|
25944
25955
|
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.21",
|
|
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
|
}
|