@pactosigna/mcp-server 0.1.22 → 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 +4 -2
  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),
@@ -25701,7 +25703,7 @@ var SCHEMA_MAP = {
25701
25703
  // Internal audit management (ISO 13485 §8.2.2)
25702
25704
  audit_schedule: AuditScheduleFrontmatterSchema,
25703
25705
  audit_report: AuditReportFrontmatterSchema,
25704
- // Management review (ISO 13485 §5.6)
25706
+ // Management review (ISO 13485 §5.6) — deprecated: in-app entity, not git-native (#707)
25705
25707
  management_review: ManagementReviewFrontmatterSchema
25706
25708
  };
25707
25709
  function getSchemaForDocumentType(type) {
@@ -25951,7 +25953,7 @@ var client = new PactoSignaApiClient({
25951
25953
  apiKey: PACTOSIGNA_API_KEY
25952
25954
  });
25953
25955
  var server = new Server(
25954
- { name: "pactosigna", version: "0.1.22" },
25956
+ { name: "pactosigna", version: "0.1.23" },
25955
25957
  { capabilities: { tools: {} } }
25956
25958
  );
25957
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.22",
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": {