framework-mcp 1.3.4 → 1.3.6
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.
- package/COPILOT_INTEGRATION.md +1 -1
- package/DEPLOYMENT_GUIDE.md +1 -1
- package/dist/index.d.ts +0 -52
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -6664
- package/dist/index.js.map +1 -1
- package/dist/interfaces/http/http-server.js +2 -2
- package/dist/interfaces/mcp/mcp-server.js +1 -1
- package/package.json +1 -1
- package/scripts/validate-documentation.sh +4 -4
- package/src/index.ts +1 -7022
- package/src/interfaces/http/http-server.ts +2 -2
- package/src/interfaces/mcp/mcp-server.ts +1 -1
- package/swagger.json +1 -1
|
@@ -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.3.
|
|
77
|
+
version: '1.3.6',
|
|
78
78
|
timestamp: new Date().toISOString()
|
|
79
79
|
});
|
|
80
80
|
});
|
|
@@ -205,7 +205,7 @@ export class FrameworkHttpServer {
|
|
|
205
205
|
this.app.get('/api', (req, res) => {
|
|
206
206
|
res.json({
|
|
207
207
|
name: 'Framework MCP HTTP API',
|
|
208
|
-
version: '1.3.
|
|
208
|
+
version: '1.3.6',
|
|
209
209
|
description: 'Dual-architecture HTTP API for vendor capability assessment against CIS Controls Framework',
|
|
210
210
|
endpoints: {
|
|
211
211
|
'POST /api/validate-vendor-mapping': 'Primary capability validation with domain validation',
|
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 v8.1 (153 safeguards). Features consolidated tool architecture with domain validation and auto-downgrade protection for accurate capability role determination (FULL, PARTIAL, FACILITATES, GOVERNANCE, VALIDATES).",
|
|
6
|
-
"version": "1.3.
|
|
6
|
+
"version": "1.3.6",
|
|
7
7
|
"contact": {
|
|
8
8
|
"name": "Framework MCP Support",
|
|
9
9
|
"url": "https://github.com/therealcybermattlee/FrameworkMCP"
|