@pactosigna/mcp-server 0.1.21 → 0.1.23

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/dist/index.js +7 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -21712,6 +21712,7 @@ var QMS_DOCUMENT_TYPES = [
21712
21712
  "audit_schedule",
21713
21713
  "audit_report",
21714
21714
  // Management review (ISO 13485 §5.6)
21715
+ // @deprecated — management reviews are in-app entities (qualityReviews collection), not git-native documents
21715
21716
  "management_review"
21716
21717
  ];
21717
21718
  var DEVICE_DOCUMENT_TYPES = [
@@ -21848,6 +21849,7 @@ var REQUIRED_SECTIONS = {
21848
21849
  release_notes: ["Changes", "Known Issues"],
21849
21850
  audit_schedule: ["Scope", "Audit Criteria"],
21850
21851
  audit_report: ["Scope", "Methodology", "Findings", "Conclusion"],
21852
+ // Deprecated: management reviews are in-app entities, not git-native documents (#707)
21851
21853
  management_review: ["Review Inputs", "Review Outputs", "Action Items", "Decisions"],
21852
21854
  hazard_category: ["Description", "Examples", "Applicable Standards"],
21853
21855
  // Risk document body sections use BODY_FORMAT heading_pattern (## HARM-XXX via HS-XXX),
@@ -23364,7 +23366,9 @@ var FrameworkDefinitionSeedSchema = external_exports.object({
23364
23366
  });
23365
23367
  var ClauseBase = external_exports.object({
23366
23368
  clauseNumber: external_exports.string().min(1),
23367
- title: external_exports.string().min(1)
23369
+ title: external_exports.string().min(1),
23370
+ /** Clause-level scope override. When omitted, inherits from parent framework. */
23371
+ scope: FrameworkScopeSchema.optional()
23368
23372
  });
23369
23373
  function buildClauseSchema(remainingDepth) {
23370
23374
  if (remainingDepth <= 0) {
@@ -25699,7 +25703,7 @@ var SCHEMA_MAP = {
25699
25703
  // Internal audit management (ISO 13485 §8.2.2)
25700
25704
  audit_schedule: AuditScheduleFrontmatterSchema,
25701
25705
  audit_report: AuditReportFrontmatterSchema,
25702
- // Management review (ISO 13485 §5.6)
25706
+ // Management review (ISO 13485 §5.6) — deprecated: in-app entity, not git-native (#707)
25703
25707
  management_review: ManagementReviewFrontmatterSchema
25704
25708
  };
25705
25709
  function getSchemaForDocumentType(type) {
@@ -25949,7 +25953,7 @@ var client = new PactoSignaApiClient({
25949
25953
  apiKey: PACTOSIGNA_API_KEY
25950
25954
  });
25951
25955
  var server = new Server(
25952
- { name: "pactosigna", version: "0.1.21" },
25956
+ { name: "pactosigna", version: "0.1.23" },
25953
25957
  { capabilities: { tools: {} } }
25954
25958
  );
25955
25959
  server.setRequestHandler(ListToolsRequestSchema, async () => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pactosigna/mcp-server",
3
- "version": "0.1.21",
3
+ "version": "0.1.23",
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": {