@pactosigna/mcp-server 0.1.20 → 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 +1 -1
- package/package.json +3 -1
package/dist/index.js
CHANGED
|
@@ -25949,7 +25949,7 @@ var client = new PactoSignaApiClient({
|
|
|
25949
25949
|
apiKey: PACTOSIGNA_API_KEY
|
|
25950
25950
|
});
|
|
25951
25951
|
var server = new Server(
|
|
25952
|
-
{ name: "pactosigna", version: "0.1.
|
|
25952
|
+
{ name: "pactosigna", version: "0.1.21" },
|
|
25953
25953
|
{ capabilities: { tools: {} } }
|
|
25954
25954
|
);
|
|
25955
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
|
}
|