framework-mcp 2.3.2 → 2.4.3

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.
@@ -83,7 +83,7 @@ export class FrameworkHttpServer {
83
83
  res.json({
84
84
  status: 'healthy',
85
85
  uptime: Math.round(process.uptime()),
86
- version: '2.3.2',
86
+ version: '2.4.3',
87
87
  timestamp: new Date().toISOString()
88
88
  });
89
89
  });
@@ -183,7 +183,7 @@ export class FrameworkHttpServer {
183
183
  this.app.get('/api', (req, res) => {
184
184
  res.json({
185
185
  name: 'Framework MCP HTTP API',
186
- version: '2.3.2',
186
+ version: '2.4.3',
187
187
  description: 'Pure Data Provider serving authentic CIS Controls Framework data',
188
188
  endpoints: {
189
189
  'GET /api/safeguards': 'List all available CIS safeguards',
@@ -7,7 +7,7 @@ export class FrameworkMcpServer {
7
7
  constructor() {
8
8
  this.server = new Server({
9
9
  name: 'framework-analyzer',
10
- version: '2.3.2',
10
+ version: '2.4.3',
11
11
  });
12
12
  this.safeguardManager = new SafeguardManager();
13
13
  this.setupHandlers();
@@ -103,7 +103,7 @@ export class FrameworkMcpServer {
103
103
  safeguards,
104
104
  total: safeguards.length,
105
105
  framework: 'CIS Controls v8.1',
106
- version: '2.3.2'
106
+ version: '2.4.3'
107
107
  }, null, 2),
108
108
  },
109
109
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "framework-mcp",
3
- "version": "2.3.2",
3
+ "version": "2.4.3",
4
4
  "description": "Pure Data Provider architecture serving authentic CIS Controls Framework data via MCP and HTTP API. Empowers LLMs with authoritative safeguards data for analysis. Supports Microsoft Copilot custom connectors and DigitalOcean App Services deployment.",
5
5
  "main": "dist/interfaces/http/http-server.js",
6
6
  "type": "module",