framework-mcp 1.5.2 → 1.5.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.
|
@@ -50,7 +50,7 @@ export class FrameworkHttpServer {
|
|
|
50
50
|
res.json({
|
|
51
51
|
status: 'healthy',
|
|
52
52
|
uptime: Math.round(process.uptime()),
|
|
53
|
-
version: '1.5.
|
|
53
|
+
version: '1.5.3',
|
|
54
54
|
timestamp: new Date().toISOString()
|
|
55
55
|
});
|
|
56
56
|
});
|
|
@@ -91,7 +91,7 @@ export class FrameworkHttpServer {
|
|
|
91
91
|
this.app.get('/api', (req, res) => {
|
|
92
92
|
res.json({
|
|
93
93
|
name: 'Framework MCP HTTP API',
|
|
94
|
-
version: '1.5.
|
|
94
|
+
version: '1.5.3',
|
|
95
95
|
description: 'Pure Data Provider serving authentic CIS Controls Framework data',
|
|
96
96
|
endpoints: {
|
|
97
97
|
'GET /api/safeguards': 'List all available CIS safeguards',
|
|
@@ -130,7 +130,7 @@ export class FrameworkHttpServer {
|
|
|
130
130
|
}
|
|
131
131
|
start() {
|
|
132
132
|
this.app.listen(this.port, '0.0.0.0', () => {
|
|
133
|
-
console.log(`🚀 Framework MCP HTTP Server v1.5.
|
|
133
|
+
console.log(`🚀 Framework MCP HTTP Server v1.5.3 running on port ${this.port}`);
|
|
134
134
|
console.log(`📊 Health check: http://localhost:${this.port}/health`);
|
|
135
135
|
console.log(`📖 API docs: http://localhost:${this.port}/api`);
|
|
136
136
|
console.log(`🔧 Environment: ${process.env.NODE_ENV || 'development'}`);
|
|
@@ -7,7 +7,7 @@ export class FrameworkMcpServer {
|
|
|
7
7
|
constructor() {
|
|
8
8
|
this.server = new Server({
|
|
9
9
|
name: 'framework-analyzer',
|
|
10
|
-
version: '1.5.
|
|
10
|
+
version: '1.5.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: '1.5.
|
|
106
|
+
version: '1.5.3'
|
|
107
107
|
}, null, 2),
|
|
108
108
|
},
|
|
109
109
|
],
|
|
@@ -122,7 +122,7 @@ export class FrameworkMcpServer {
|
|
|
122
122
|
async run() {
|
|
123
123
|
const transport = new StdioServerTransport();
|
|
124
124
|
await this.server.connect(transport);
|
|
125
|
-
console.error('🤖 Framework MCP Server v1.5.
|
|
125
|
+
console.error('🤖 Framework MCP Server v1.5.3 running via stdio');
|
|
126
126
|
console.error('📊 Pure Data Provider for CIS Controls v8.1');
|
|
127
127
|
}
|
|
128
128
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "framework-mcp",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.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",
|
|
@@ -68,7 +68,7 @@ export class FrameworkHttpServer {
|
|
|
68
68
|
res.json({
|
|
69
69
|
status: 'healthy',
|
|
70
70
|
uptime: Math.round(process.uptime()),
|
|
71
|
-
version: '1.5.
|
|
71
|
+
version: '1.5.3',
|
|
72
72
|
timestamp: new Date().toISOString()
|
|
73
73
|
});
|
|
74
74
|
});
|
|
@@ -117,7 +117,7 @@ export class FrameworkHttpServer {
|
|
|
117
117
|
this.app.get('/api', (req, res) => {
|
|
118
118
|
res.json({
|
|
119
119
|
name: 'Framework MCP HTTP API',
|
|
120
|
-
version: '1.5.
|
|
120
|
+
version: '1.5.3',
|
|
121
121
|
description: 'Pure Data Provider serving authentic CIS Controls Framework data',
|
|
122
122
|
endpoints: {
|
|
123
123
|
'GET /api/safeguards': 'List all available CIS safeguards',
|
|
@@ -168,7 +168,7 @@ export class FrameworkHttpServer {
|
|
|
168
168
|
|
|
169
169
|
public start(): void {
|
|
170
170
|
this.app.listen(this.port, '0.0.0.0', () => {
|
|
171
|
-
console.log(`🚀 Framework MCP HTTP Server v1.5.
|
|
171
|
+
console.log(`🚀 Framework MCP HTTP Server v1.5.3 running on port ${this.port}`);
|
|
172
172
|
console.log(`📊 Health check: http://localhost:${this.port}/health`);
|
|
173
173
|
console.log(`📖 API docs: http://localhost:${this.port}/api`);
|
|
174
174
|
console.log(`🔧 Environment: ${process.env.NODE_ENV || 'development'}`);
|
|
@@ -18,7 +18,7 @@ export class FrameworkMcpServer {
|
|
|
18
18
|
this.server = new Server(
|
|
19
19
|
{
|
|
20
20
|
name: 'framework-analyzer',
|
|
21
|
-
version: '1.5.
|
|
21
|
+
version: '1.5.3',
|
|
22
22
|
}
|
|
23
23
|
);
|
|
24
24
|
|
|
@@ -129,7 +129,7 @@ export class FrameworkMcpServer {
|
|
|
129
129
|
safeguards,
|
|
130
130
|
total: safeguards.length,
|
|
131
131
|
framework: 'CIS Controls v8.1',
|
|
132
|
-
version: '1.5.
|
|
132
|
+
version: '1.5.3'
|
|
133
133
|
}, null, 2),
|
|
134
134
|
},
|
|
135
135
|
],
|
|
@@ -153,7 +153,7 @@ export class FrameworkMcpServer {
|
|
|
153
153
|
const transport = new StdioServerTransport();
|
|
154
154
|
await this.server.connect(transport);
|
|
155
155
|
|
|
156
|
-
console.error('🤖 Framework MCP Server v1.5.
|
|
156
|
+
console.error('🤖 Framework MCP Server v1.5.3 running via stdio');
|
|
157
157
|
console.error('📊 Pure Data Provider for CIS Controls v8.1');
|
|
158
158
|
}
|
|
159
159
|
}
|
package/swagger.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Framework MCP API - Pure Data Provider",
|
|
5
5
|
"description": "Microsoft Copilot-compatible API providing authoritative CIS Controls Framework v8.1 data (153 safeguards). Pure Data Provider architecture empowers LLMs with structured safeguards data and AI-driven systemPrompts for sophisticated, context-aware vendor capability analysis and n8n workflow automation.",
|
|
6
|
-
"version": "1.5.
|
|
6
|
+
"version": "1.5.3",
|
|
7
7
|
"contact": {
|
|
8
8
|
"name": "Framework MCP Support",
|
|
9
9
|
"url": "https://github.com/therealcybermattlee/FrameworkMCP"
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
},
|
|
315
315
|
"version": {
|
|
316
316
|
"type": "string",
|
|
317
|
-
"example": "1.5.
|
|
317
|
+
"example": "1.5.3"
|
|
318
318
|
},
|
|
319
319
|
"timestamp": {
|
|
320
320
|
"type": "string",
|
|
@@ -359,7 +359,7 @@
|
|
|
359
359
|
},
|
|
360
360
|
"version": {
|
|
361
361
|
"type": "string",
|
|
362
|
-
"example": "1.5.
|
|
362
|
+
"example": "1.5.3"
|
|
363
363
|
},
|
|
364
364
|
"description": {
|
|
365
365
|
"type": "string",
|