framework-mcp 1.3.0 → 1.3.1

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.
@@ -52,7 +52,7 @@ Expected response:
52
52
  "uptime": 1234,
53
53
  "totalRequests": 0,
54
54
  "errorCount": 0,
55
- "version": "1.2.0",
55
+ "version": "1.3.1",
56
56
  "timestamp": "2025-08-21T01:00:00.000Z"
57
57
  }
58
58
  ```
@@ -55,7 +55,7 @@ export class FrameworkHttpServer {
55
55
  uptime: Math.round((Date.now() - metrics.uptime) / 1000),
56
56
  totalRequests: metrics.totalRequests,
57
57
  errorCount: metrics.errorCount,
58
- version: '1.2.0',
58
+ version: '1.3.1',
59
59
  timestamp: new Date().toISOString()
60
60
  });
61
61
  });
@@ -181,7 +181,7 @@ export class FrameworkHttpServer {
181
181
  this.app.get('/api', (req, res) => {
182
182
  res.json({
183
183
  name: 'Framework MCP HTTP API',
184
- version: '1.2.0',
184
+ version: '1.3.1',
185
185
  description: 'Dual-architecture HTTP API for vendor capability assessment against CIS Controls Framework',
186
186
  endpoints: {
187
187
  'POST /api/validate-vendor-mapping': 'Primary capability validation with domain validation',
@@ -259,7 +259,7 @@ export class FrameworkHttpServer {
259
259
  }
260
260
  start() {
261
261
  this.app.listen(this.port, '0.0.0.0', () => {
262
- console.log(`🚀 Framework MCP HTTP Server v1.2.0 running on port ${this.port}`);
262
+ console.log(`🚀 Framework MCP HTTP Server v1.3.1 running on port ${this.port}`);
263
263
  console.log(`📊 Health check: http://localhost:${this.port}/health`);
264
264
  console.log(`📖 API docs: http://localhost:${this.port}/api`);
265
265
  console.log(`🔧 Environment: ${process.env.NODE_ENV || 'development'}`);
@@ -8,7 +8,7 @@ export class FrameworkMcpServer {
8
8
  constructor() {
9
9
  this.server = new Server({
10
10
  name: 'framework-analyzer',
11
- version: '1.2.0',
11
+ version: '1.3.1',
12
12
  });
13
13
  this.capabilityAnalyzer = new CapabilityAnalyzer();
14
14
  this.safeguardManager = new SafeguardManager();
@@ -245,7 +245,7 @@ export class FrameworkMcpServer {
245
245
  safeguards,
246
246
  total: safeguards.length,
247
247
  framework: 'CIS Controls v8.1',
248
- version: '1.2.0'
248
+ version: '1.3.1'
249
249
  }, null, 2),
250
250
  },
251
251
  ],
@@ -287,7 +287,7 @@ export class FrameworkMcpServer {
287
287
  async run() {
288
288
  const transport = new StdioServerTransport();
289
289
  await this.server.connect(transport);
290
- console.error('🤖 Framework MCP Server v1.2.0 running via stdio');
290
+ console.error('🤖 Framework MCP Server v1.3.1 running via stdio');
291
291
  console.error('📊 Capability assessment with domain validation enabled');
292
292
  }
293
293
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "framework-mcp",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Dual-architecture server (MCP + HTTP API) for determining vendor tool capability roles against CIS Controls Framework with intelligent domain validation. Supports Microsoft Copilot custom connectors and DigitalOcean App Services deployment.",
5
5
  "main": "dist/interfaces/http/http-server.js",
6
6
  "type": "module",
@@ -74,7 +74,7 @@ export class FrameworkHttpServer {
74
74
  uptime: Math.round((Date.now() - metrics.uptime) / 1000),
75
75
  totalRequests: metrics.totalRequests,
76
76
  errorCount: metrics.errorCount,
77
- version: '1.2.0',
77
+ version: '1.3.1',
78
78
  timestamp: new Date().toISOString()
79
79
  });
80
80
  });
@@ -235,7 +235,7 @@ export class FrameworkHttpServer {
235
235
  this.app.get('/api', (req, res) => {
236
236
  res.json({
237
237
  name: 'Framework MCP HTTP API',
238
- version: '1.2.0',
238
+ version: '1.3.1',
239
239
  description: 'Dual-architecture HTTP API for vendor capability assessment against CIS Controls Framework',
240
240
  endpoints: {
241
241
  'POST /api/validate-vendor-mapping': 'Primary capability validation with domain validation',
@@ -332,7 +332,7 @@ export class FrameworkHttpServer {
332
332
 
333
333
  public start(): void {
334
334
  this.app.listen(this.port, '0.0.0.0', () => {
335
- console.log(`🚀 Framework MCP HTTP Server v1.2.0 running on port ${this.port}`);
335
+ console.log(`🚀 Framework MCP HTTP Server v1.3.1 running on port ${this.port}`);
336
336
  console.log(`📊 Health check: http://localhost:${this.port}/health`);
337
337
  console.log(`📖 API docs: http://localhost:${this.port}/api`);
338
338
  console.log(`🔧 Environment: ${process.env.NODE_ENV || 'development'}`);
@@ -20,7 +20,7 @@ export class FrameworkMcpServer {
20
20
  this.server = new Server(
21
21
  {
22
22
  name: 'framework-analyzer',
23
- version: '1.2.0',
23
+ version: '1.3.1',
24
24
  }
25
25
  );
26
26
 
@@ -301,7 +301,7 @@ export class FrameworkMcpServer {
301
301
  safeguards,
302
302
  total: safeguards.length,
303
303
  framework: 'CIS Controls v8.1',
304
- version: '1.2.0'
304
+ version: '1.3.1'
305
305
  }, null, 2),
306
306
  },
307
307
  ],
@@ -355,7 +355,7 @@ export class FrameworkMcpServer {
355
355
  const transport = new StdioServerTransport();
356
356
  await this.server.connect(transport);
357
357
 
358
- console.error('🤖 Framework MCP Server v1.2.0 running via stdio');
358
+ console.error('🤖 Framework MCP Server v1.3.1 running via stdio');
359
359
  console.error('📊 Capability assessment with domain validation enabled');
360
360
  }
361
361
  }
package/swagger.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "info": {
4
4
  "title": "Framework MCP API - CIS Controls Capability Assessment",
5
5
  "description": "Microsoft Copilot-compatible API for vendor capability assessment against CIS Controls Framework. Determines vendor tool roles (FULL, PARTIAL, FACILITATES, GOVERNANCE, VALIDATES) with domain validation and auto-downgrade protection.",
6
- "version": "1.2.0",
6
+ "version": "1.3.1",
7
7
  "contact": {
8
8
  "name": "Framework MCP Support",
9
9
  "url": "https://github.com/therealcybermattlee/FrameworkMCP"
@@ -642,7 +642,7 @@
642
642
  },
643
643
  "version": {
644
644
  "type": "string",
645
- "example": "1.2.0"
645
+ "example": "1.3.1"
646
646
  },
647
647
  "timestamp": {
648
648
  "type": "string",