@democratize-quality/mcp-server 1.1.9 → 1.2.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.
- package/cli.js +21 -1
- package/dist/server.d.ts +41 -0
- package/dist/server.d.ts.map +1 -0
- package/dist/server.js +225 -0
- package/dist/server.js.map +1 -0
- package/package.json +24 -23
- package/src/config/environments/api-only.js +19 -0
- package/src/config/environments/development.js +19 -0
- package/src/config/environments/production.js +19 -0
- package/src/config/index.js +19 -0
- package/src/config/server.js +19 -0
- package/src/config/tools/api.js +19 -0
- package/src/config/tools/browser.js +19 -0
- package/src/config/tools/default.js +19 -0
- package/src/server.ts +234 -0
- package/src/services/browserService.js +19 -0
- package/src/tools/api/api-generator.js +19 -0
- package/src/tools/api/api-healer.js +19 -0
- package/src/tools/api/api-planner.js +19 -0
- package/src/tools/api/api-project-setup.js +19 -0
- package/src/tools/api/api-request.js +19 -0
- package/src/tools/api/api-session-report.js +19 -0
- package/src/tools/api/api-session-status.js +19 -0
- package/src/tools/api/prompts/generation-prompts.js +19 -0
- package/src/tools/api/prompts/healing-prompts.js +19 -0
- package/src/tools/api/prompts/index.js +19 -0
- package/src/tools/api/prompts/orchestrator.js +19 -0
- package/src/tools/api/prompts/validation-rules.js +19 -0
- package/src/tools/base/ToolBase.js +19 -0
- package/src/tools/base/ToolRegistry.js +19 -0
- package/src/tools/browser/advanced/browser-console.js +19 -0
- package/src/tools/browser/advanced/browser-dialog.js +19 -0
- package/src/tools/browser/advanced/browser-evaluate.js +19 -0
- package/src/tools/browser/advanced/browser-file.js +19 -0
- package/src/tools/browser/advanced/browser-keyboard.js +19 -0
- package/src/tools/browser/advanced/browser-mouse.js +19 -0
- package/src/tools/browser/advanced/browser-network.js +19 -0
- package/src/tools/browser/advanced/browser-pdf.js +19 -0
- package/src/tools/browser/advanced/browser-tabs.js +19 -0
- package/src/tools/browser/advanced/browser-wait.js +19 -0
- package/src/tools/browser/click.js +19 -0
- package/src/tools/browser/close.js +19 -0
- package/src/tools/browser/dom.js +19 -0
- package/src/tools/browser/launch.js +19 -0
- package/src/tools/browser/navigate.js +19 -0
- package/src/tools/browser/screenshot.js +19 -0
- package/src/tools/browser/type.js +19 -0
- package/src/tools/index.js +19 -0
- package/src/utils/agentInstaller.js +19 -0
- package/src/utils/browserHelpers.js +19 -0
- package/browserControl.js +0 -113
- package/mcpServer.js +0 -335
- package/run-server.js +0 -140
package/cli.js
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* Copyright (C) 2025 Democratize Quality
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Democratize Quality MCP Server.
|
|
7
|
+
*
|
|
8
|
+
* Democratize Quality MCP Server is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU Affero General Public License as published by
|
|
10
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
* (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* Democratize Quality MCP Server is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU Affero General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
19
|
+
* along with Democratize Quality MCP Server. If not, see <https://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
|
|
3
23
|
/**
|
|
4
24
|
* Democratize Quality MCP Server CLI
|
|
5
25
|
* Can be run via npx @democratize-quality/mcp-server
|
|
@@ -199,7 +219,7 @@ if (args.includes('--debug')) {
|
|
|
199
219
|
}
|
|
200
220
|
|
|
201
221
|
// Start the MCP server
|
|
202
|
-
const serverPath = path.join(__dirname, '
|
|
222
|
+
const serverPath = path.join(__dirname, 'dist', 'server.js');
|
|
203
223
|
const serverProcess = spawn('node', [serverPath], {
|
|
204
224
|
env,
|
|
205
225
|
stdio: 'inherit'
|
package/dist/server.d.ts
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (C) 2025 Democratize Quality
|
|
4
|
+
*
|
|
5
|
+
* This file is part of Democratize Quality MCP Server.
|
|
6
|
+
*
|
|
7
|
+
* Democratize Quality MCP Server is free software: you can redistribute it and/or modify
|
|
8
|
+
* it under the terms of the GNU Affero General Public License as published by
|
|
9
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
10
|
+
* (at your option) any later version.
|
|
11
|
+
*
|
|
12
|
+
* Democratize Quality MCP Server is distributed in the hope that it will be useful,
|
|
13
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
14
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
15
|
+
* GNU Affero General Public License for more details.
|
|
16
|
+
*
|
|
17
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
18
|
+
* along with Democratize Quality MCP Server. If not, see <https://www.gnu.org/licenses/>.
|
|
19
|
+
*/
|
|
20
|
+
interface ServerConfig {
|
|
21
|
+
enableDebugMode?: boolean;
|
|
22
|
+
enableApiTools?: boolean;
|
|
23
|
+
enableBrowserTools?: boolean;
|
|
24
|
+
enableAdvancedTools?: boolean;
|
|
25
|
+
}
|
|
26
|
+
declare class DemocratizeQualityMCPServer {
|
|
27
|
+
private server;
|
|
28
|
+
private toolDefinitions;
|
|
29
|
+
private config;
|
|
30
|
+
private isDebugMode;
|
|
31
|
+
constructor(serverConfig?: ServerConfig);
|
|
32
|
+
private debugLog;
|
|
33
|
+
private log;
|
|
34
|
+
private setupHandlers;
|
|
35
|
+
private getAvailableTools;
|
|
36
|
+
initialize(): Promise<void>;
|
|
37
|
+
start(): Promise<void>;
|
|
38
|
+
stop(): Promise<void>;
|
|
39
|
+
}
|
|
40
|
+
export { DemocratizeQualityMCPServer };
|
|
41
|
+
//# sourceMappingURL=server.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;;;;GAiBG;AA0BH,UAAU,YAAY;IACpB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC/B;AAED,cAAM,2BAA2B;IAC/B,OAAO,CAAC,MAAM,CAAS;IACvB,OAAO,CAAC,eAAe,CAAa;IACpC,OAAO,CAAC,MAAM,CAAe;IAC7B,OAAO,CAAC,WAAW,CAAU;gBAEjB,YAAY,GAAE,YAAiB;IA4B3C,OAAO,CAAC,QAAQ;IAMhB,OAAO,CAAC,GAAG;IAIX,OAAO,CAAC,aAAa;IA4CrB,OAAO,CAAC,iBAAiB;IAkBnB,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IAkB3B,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IActB,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;CAQ5B;AAmCD,OAAO,EAAE,2BAA2B,EAAE,CAAC"}
|
package/dist/server.js
ADDED
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
"use strict";
|
|
3
|
+
/**
|
|
4
|
+
* Copyright (C) 2025 Democratize Quality
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Democratize Quality MCP Server.
|
|
7
|
+
*
|
|
8
|
+
* Democratize Quality MCP Server is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU Affero General Public License as published by
|
|
10
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
* (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* Democratize Quality MCP Server is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU Affero General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
19
|
+
* along with Democratize Quality MCP Server. If not, see <https://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
22
|
+
if (k2 === undefined) k2 = k;
|
|
23
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
24
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
25
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
26
|
+
}
|
|
27
|
+
Object.defineProperty(o, k2, desc);
|
|
28
|
+
}) : (function(o, m, k, k2) {
|
|
29
|
+
if (k2 === undefined) k2 = k;
|
|
30
|
+
o[k2] = m[k];
|
|
31
|
+
}));
|
|
32
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
33
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
34
|
+
}) : function(o, v) {
|
|
35
|
+
o["default"] = v;
|
|
36
|
+
});
|
|
37
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
38
|
+
var ownKeys = function(o) {
|
|
39
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
40
|
+
var ar = [];
|
|
41
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
42
|
+
return ar;
|
|
43
|
+
};
|
|
44
|
+
return ownKeys(o);
|
|
45
|
+
};
|
|
46
|
+
return function (mod) {
|
|
47
|
+
if (mod && mod.__esModule) return mod;
|
|
48
|
+
var result = {};
|
|
49
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
50
|
+
__setModuleDefault(result, mod);
|
|
51
|
+
return result;
|
|
52
|
+
};
|
|
53
|
+
})();
|
|
54
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55
|
+
exports.DemocratizeQualityMCPServer = void 0;
|
|
56
|
+
/**
|
|
57
|
+
* @democratize-quality/mcp-server
|
|
58
|
+
* Main MCP server implementation for API testing and browser automation
|
|
59
|
+
*/
|
|
60
|
+
const index_js_1 = require("@modelcontextprotocol/sdk/server/index.js");
|
|
61
|
+
const stdio_js_1 = require("@modelcontextprotocol/sdk/server/stdio.js");
|
|
62
|
+
const types_js_1 = require("@modelcontextprotocol/sdk/types.js");
|
|
63
|
+
const path = __importStar(require("path"));
|
|
64
|
+
// Import existing CommonJS modules - use paths relative to project root
|
|
65
|
+
// When compiled, this will be in dist/, so we need to go up one level to find src/
|
|
66
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
67
|
+
const browserService = require(path.join(__dirname, '..', 'src', 'services', 'browserService.js'));
|
|
68
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
69
|
+
const toolsModule = require(path.join(__dirname, '..', 'src', 'tools', 'index.js'));
|
|
70
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
71
|
+
const config = require(path.join(__dirname, '..', 'src', 'config', 'index.js'));
|
|
72
|
+
class DemocratizeQualityMCPServer {
|
|
73
|
+
server;
|
|
74
|
+
toolDefinitions = [];
|
|
75
|
+
config;
|
|
76
|
+
isDebugMode;
|
|
77
|
+
constructor(serverConfig = {}) {
|
|
78
|
+
// Check if debug mode is requested via environment variable
|
|
79
|
+
const debugFromEnv = process.env.MCP_FEATURES_ENABLEDEBUGMODE === 'true' ||
|
|
80
|
+
process.env.NODE_ENV === 'development';
|
|
81
|
+
this.isDebugMode = config.get('features.enableDebugMode', false) || debugFromEnv || serverConfig.enableDebugMode || false;
|
|
82
|
+
// Set quiet mode if not in debug
|
|
83
|
+
config.setQuiet(!this.isDebugMode);
|
|
84
|
+
this.config = serverConfig;
|
|
85
|
+
// Initialize MCP Server with SDK
|
|
86
|
+
this.server = new index_js_1.Server({
|
|
87
|
+
name: '@democratize-quality/mcp-server',
|
|
88
|
+
version: '1.2.0',
|
|
89
|
+
}, {
|
|
90
|
+
capabilities: {
|
|
91
|
+
tools: {},
|
|
92
|
+
},
|
|
93
|
+
});
|
|
94
|
+
this.setupHandlers();
|
|
95
|
+
}
|
|
96
|
+
debugLog(...args) {
|
|
97
|
+
if (this.isDebugMode) {
|
|
98
|
+
console.error('[Democratize Quality MCP]', ...args);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
log(...args) {
|
|
102
|
+
console.error('[Democratize Quality MCP]', ...args);
|
|
103
|
+
}
|
|
104
|
+
setupHandlers() {
|
|
105
|
+
// List available tools
|
|
106
|
+
this.server.setRequestHandler(types_js_1.ListToolsRequestSchema, async () => {
|
|
107
|
+
this.debugLog(`Received 'tools/list' request.`);
|
|
108
|
+
this.debugLog(`Returning ${this.toolDefinitions.length} tools`);
|
|
109
|
+
return {
|
|
110
|
+
tools: this.getAvailableTools(),
|
|
111
|
+
};
|
|
112
|
+
});
|
|
113
|
+
// Handle tool calls
|
|
114
|
+
this.server.setRequestHandler(types_js_1.CallToolRequestSchema, async (request) => {
|
|
115
|
+
const { name, arguments: args } = request.params;
|
|
116
|
+
this.debugLog(`Received 'tools/call' for method: ${name}`);
|
|
117
|
+
try {
|
|
118
|
+
// Use the existing tool system to execute the tool
|
|
119
|
+
const result = await toolsModule.executeTool(name, args || {});
|
|
120
|
+
return {
|
|
121
|
+
content: [
|
|
122
|
+
{
|
|
123
|
+
type: 'text',
|
|
124
|
+
text: typeof result === 'string' ? result : JSON.stringify(result, null, 2),
|
|
125
|
+
},
|
|
126
|
+
],
|
|
127
|
+
};
|
|
128
|
+
}
|
|
129
|
+
catch (error) {
|
|
130
|
+
this.log(`Error executing tool '${name}':`, error.message);
|
|
131
|
+
return {
|
|
132
|
+
content: [
|
|
133
|
+
{
|
|
134
|
+
type: 'text',
|
|
135
|
+
text: `Error executing ${name}: ${error.message}`,
|
|
136
|
+
},
|
|
137
|
+
],
|
|
138
|
+
isError: true,
|
|
139
|
+
};
|
|
140
|
+
}
|
|
141
|
+
});
|
|
142
|
+
}
|
|
143
|
+
getAvailableTools() {
|
|
144
|
+
// Convert existing tool definitions to MCP SDK format
|
|
145
|
+
return this.toolDefinitions.map((tool) => {
|
|
146
|
+
const sdkTool = {
|
|
147
|
+
name: tool.name,
|
|
148
|
+
description: tool.description,
|
|
149
|
+
inputSchema: {
|
|
150
|
+
type: 'object',
|
|
151
|
+
properties: tool.input_schema?.properties || tool.inputSchema?.properties || {},
|
|
152
|
+
...(tool.input_schema?.required && tool.input_schema.required.length > 0
|
|
153
|
+
? { required: tool.input_schema.required }
|
|
154
|
+
: {}),
|
|
155
|
+
},
|
|
156
|
+
};
|
|
157
|
+
return sdkTool;
|
|
158
|
+
});
|
|
159
|
+
}
|
|
160
|
+
async initialize() {
|
|
161
|
+
try {
|
|
162
|
+
this.debugLog('Initializing tool system...');
|
|
163
|
+
// Initialize the existing tool system
|
|
164
|
+
await toolsModule.initializeTools(this.isDebugMode);
|
|
165
|
+
// Get tool definitions from the existing system
|
|
166
|
+
this.toolDefinitions = toolsModule.getToolDefinitions();
|
|
167
|
+
this.log(`Tool system initialized with ${this.toolDefinitions.length} tools`);
|
|
168
|
+
}
|
|
169
|
+
catch (error) {
|
|
170
|
+
this.log('Failed to initialize tool system:', error.message);
|
|
171
|
+
throw error;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
async start() {
|
|
175
|
+
// Initialize tools first
|
|
176
|
+
await this.initialize();
|
|
177
|
+
// Create transport and connect
|
|
178
|
+
const transport = new stdio_js_1.StdioServerTransport();
|
|
179
|
+
await this.server.connect(transport);
|
|
180
|
+
this.log('Server started and ready');
|
|
181
|
+
if (this.isDebugMode) {
|
|
182
|
+
this.log('Debug mode enabled - showing detailed logs');
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
async stop() {
|
|
186
|
+
try {
|
|
187
|
+
await browserService.shutdownAllBrowsers();
|
|
188
|
+
this.log('All browser instances closed');
|
|
189
|
+
}
|
|
190
|
+
catch (error) {
|
|
191
|
+
this.log('Error during shutdown:', error.message);
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
exports.DemocratizeQualityMCPServer = DemocratizeQualityMCPServer;
|
|
196
|
+
// Main entry point
|
|
197
|
+
async function main() {
|
|
198
|
+
const server = new DemocratizeQualityMCPServer();
|
|
199
|
+
// Handle graceful shutdown
|
|
200
|
+
process.on('SIGINT', async () => {
|
|
201
|
+
console.error('\nSIGINT received. Shutting down...');
|
|
202
|
+
await server.stop();
|
|
203
|
+
process.exit(0);
|
|
204
|
+
});
|
|
205
|
+
process.on('SIGTERM', async () => {
|
|
206
|
+
console.error('\nSIGTERM received. Shutting down...');
|
|
207
|
+
await server.stop();
|
|
208
|
+
process.exit(0);
|
|
209
|
+
});
|
|
210
|
+
try {
|
|
211
|
+
await server.start();
|
|
212
|
+
}
|
|
213
|
+
catch (error) {
|
|
214
|
+
console.error('Failed to start server:', error);
|
|
215
|
+
process.exit(1);
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
// Start the server if this file is being executed directly
|
|
219
|
+
if (require.main === module) {
|
|
220
|
+
main().catch((error) => {
|
|
221
|
+
console.error('Unhandled error:', error);
|
|
222
|
+
process.exit(1);
|
|
223
|
+
});
|
|
224
|
+
}
|
|
225
|
+
//# sourceMappingURL=server.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server.js","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@democratize-quality/mcp-server",
|
|
3
|
-
"version": "1.1
|
|
4
|
-
"main": "
|
|
3
|
+
"version": "1.2.1",
|
|
4
|
+
"main": "dist/server.js",
|
|
5
5
|
"bin": {
|
|
6
|
-
"democratize-quality-mcp": "cli.js",
|
|
7
|
-
"dq-mcp-server": "cli.js"
|
|
6
|
+
"democratize-quality-mcp": "./cli.js",
|
|
7
|
+
"dq-mcp-server": "./cli.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
|
-
"mcpServer.js",
|
|
11
|
-
"run-server.js",
|
|
12
10
|
"cli.js",
|
|
13
|
-
"
|
|
11
|
+
"dist/",
|
|
14
12
|
"src/",
|
|
15
13
|
"docs/",
|
|
16
14
|
"README.md",
|
|
@@ -20,21 +18,21 @@
|
|
|
20
18
|
"access": "public"
|
|
21
19
|
},
|
|
22
20
|
"scripts": {
|
|
21
|
+
"build": "npm run clean && tsc && npm run make-executable",
|
|
22
|
+
"make-executable": "node -e \"import('fs').then(fs => fs.chmodSync('dist/server.js', '755'))\"",
|
|
23
|
+
"clean": "rm -rf dist",
|
|
24
|
+
"dev": "tsc --watch",
|
|
25
|
+
"start": "node dist/server.js",
|
|
26
|
+
"mcp": "node dist/server.js",
|
|
27
|
+
"mcp:debug": "MCP_FEATURES_ENABLEDEBUGMODE=true node dist/server.js",
|
|
23
28
|
"test": "node test-mcp.js",
|
|
24
29
|
"docs:generate": "node scripts/generate-docs.js",
|
|
25
30
|
"docs:watch": "nodemon scripts/generate-docs.js",
|
|
26
31
|
"docs:clean": "rm -rf docs/",
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"server": "node run-server.js",
|
|
32
|
-
"server:debug": "node run-server.js --debug",
|
|
33
|
-
"server:prod": "node run-server.js --production",
|
|
34
|
-
"inspector": "npx @modelcontextprotocol/inspector node mcpServer.js",
|
|
35
|
-
"prepare-publish": "node prepare-publish.js",
|
|
36
|
-
"prepublishOnly": "npm run prepare-publish",
|
|
37
|
-
"postinstall": "echo '\n🎯 Democratize Quality MCP Server installed successfully!\n\nQuick start:\n npx @democratize-quality/mcp-server --help\n npx dq-mcp-server --help\n\nDocumentation: https://github.com/democratize-quality/mcp-server#readme\n'"
|
|
32
|
+
"inspector": "npx @modelcontextprotocol/inspector node dist/server.js",
|
|
33
|
+
"prepare": "npm run build",
|
|
34
|
+
"prepublishOnly": "npm run test",
|
|
35
|
+
"postinstall": "echo '\n🎯 Democratize Quality MCP Server installed successfully!\n\nQuick start:\n npx @democratize-quality/mcp-server\n npx dq-mcp-server\n\nDocumentation: https://github.com/democratize-quality/mcp-server#readme\n'"
|
|
38
36
|
},
|
|
39
37
|
"keywords": [
|
|
40
38
|
"mcp",
|
|
@@ -62,7 +60,7 @@
|
|
|
62
60
|
"server": {
|
|
63
61
|
"command": "node",
|
|
64
62
|
"args": [
|
|
65
|
-
"
|
|
63
|
+
"dist/server.js"
|
|
66
64
|
],
|
|
67
65
|
"env": {
|
|
68
66
|
"NODE_ENV": "production"
|
|
@@ -71,16 +69,19 @@
|
|
|
71
69
|
},
|
|
72
70
|
"dependencies": {
|
|
73
71
|
"@faker-js/faker": "^9.0.0",
|
|
74
|
-
"
|
|
72
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
75
73
|
"chrome-launcher": "^1.2.0",
|
|
76
74
|
"chrome-remote-interface": "^0.33.3",
|
|
77
|
-
"express": "^5.1.0",
|
|
78
75
|
"graphql": "^16.11.0",
|
|
79
|
-
"json-rpc-2.0": "^1.7.1",
|
|
80
76
|
"yaml": "^2.8.1",
|
|
81
77
|
"zod": "^4.0.10"
|
|
82
78
|
},
|
|
83
79
|
"devDependencies": {
|
|
84
|
-
"
|
|
80
|
+
"@types/node": "^22.8.7",
|
|
81
|
+
"nodemon": "^3.1.10",
|
|
82
|
+
"typescript": "^5.6.3"
|
|
83
|
+
},
|
|
84
|
+
"engines": {
|
|
85
|
+
"node": ">=18.0.0"
|
|
85
86
|
}
|
|
86
87
|
}
|
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (C) 2025 Democratize Quality
|
|
3
|
+
*
|
|
4
|
+
* This file is part of Democratize Quality MCP Server.
|
|
5
|
+
*
|
|
6
|
+
* Democratize Quality MCP Server is free software: you can redistribute it and/or modify
|
|
7
|
+
* it under the terms of the GNU Affero General Public License as published by
|
|
8
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
* (at your option) any later version.
|
|
10
|
+
*
|
|
11
|
+
* Democratize Quality MCP Server is distributed in the hope that it will be useful,
|
|
12
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
* GNU Affero General Public License for more details.
|
|
15
|
+
*
|
|
16
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
17
|
+
* along with Democratize Quality MCP Server. If not, see <https://www.gnu.org/licenses/>.
|
|
18
|
+
*/
|
|
19
|
+
|
|
1
20
|
/**
|
|
2
21
|
* API-only environment configuration
|
|
3
22
|
* Only enables API testing tools, disables all browser automation tools
|
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (C) 2025 Democratize Quality
|
|
3
|
+
*
|
|
4
|
+
* This file is part of Democratize Quality MCP Server.
|
|
5
|
+
*
|
|
6
|
+
* Democratize Quality MCP Server is free software: you can redistribute it and/or modify
|
|
7
|
+
* it under the terms of the GNU Affero General Public License as published by
|
|
8
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
* (at your option) any later version.
|
|
10
|
+
*
|
|
11
|
+
* Democratize Quality MCP Server is distributed in the hope that it will be useful,
|
|
12
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
* GNU Affero General Public License for more details.
|
|
15
|
+
*
|
|
16
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
17
|
+
* along with Democratize Quality MCP Server. If not, see <https://www.gnu.org/licenses/>.
|
|
18
|
+
*/
|
|
19
|
+
|
|
1
20
|
/**
|
|
2
21
|
* Development environment configuration
|
|
3
22
|
* Settings optimized for development and debugging
|
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (C) 2025 Democratize Quality
|
|
3
|
+
*
|
|
4
|
+
* This file is part of Democratize Quality MCP Server.
|
|
5
|
+
*
|
|
6
|
+
* Democratize Quality MCP Server is free software: you can redistribute it and/or modify
|
|
7
|
+
* it under the terms of the GNU Affero General Public License as published by
|
|
8
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
* (at your option) any later version.
|
|
10
|
+
*
|
|
11
|
+
* Democratize Quality MCP Server is distributed in the hope that it will be useful,
|
|
12
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
* GNU Affero General Public License for more details.
|
|
15
|
+
*
|
|
16
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
17
|
+
* along with Democratize Quality MCP Server. If not, see <https://www.gnu.org/licenses/>.
|
|
18
|
+
*/
|
|
19
|
+
|
|
1
20
|
/**
|
|
2
21
|
* Production environment configuration
|
|
3
22
|
* Settings optimized for production deployment
|
package/src/config/index.js
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (C) 2025 Democratize Quality
|
|
3
|
+
*
|
|
4
|
+
* This file is part of Democratize Quality MCP Server.
|
|
5
|
+
*
|
|
6
|
+
* Democratize Quality MCP Server is free software: you can redistribute it and/or modify
|
|
7
|
+
* it under the terms of the GNU Affero General Public License as published by
|
|
8
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
* (at your option) any later version.
|
|
10
|
+
*
|
|
11
|
+
* Democratize Quality MCP Server is distributed in the hope that it will be useful,
|
|
12
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
* GNU Affero General Public License for more details.
|
|
15
|
+
*
|
|
16
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
17
|
+
* along with Democratize Quality MCP Server. If not, see <https://www.gnu.org/licenses/>.
|
|
18
|
+
*/
|
|
19
|
+
|
|
1
20
|
const path = require('path');
|
|
2
21
|
const fs = require('fs');
|
|
3
22
|
|
package/src/config/server.js
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (C) 2025 Democratize Quality
|
|
3
|
+
*
|
|
4
|
+
* This file is part of Democratize Quality MCP Server.
|
|
5
|
+
*
|
|
6
|
+
* Democratize Quality MCP Server is free software: you can redistribute it and/or modify
|
|
7
|
+
* it under the terms of the GNU Affero General Public License as published by
|
|
8
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
* (at your option) any later version.
|
|
10
|
+
*
|
|
11
|
+
* Democratize Quality MCP Server is distributed in the hope that it will be useful,
|
|
12
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
* GNU Affero General Public License for more details.
|
|
15
|
+
*
|
|
16
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
17
|
+
* along with Democratize Quality MCP Server. If not, see <https://www.gnu.org/licenses/>.
|
|
18
|
+
*/
|
|
19
|
+
|
|
1
20
|
/**
|
|
2
21
|
* Server-level configuration
|
|
3
22
|
* Core server settings and MCP protocol configuration
|
package/src/config/tools/api.js
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (C) 2025 Democratize Quality
|
|
3
|
+
*
|
|
4
|
+
* This file is part of Democratize Quality MCP Server.
|
|
5
|
+
*
|
|
6
|
+
* Democratize Quality MCP Server is free software: you can redistribute it and/or modify
|
|
7
|
+
* it under the terms of the GNU Affero General Public License as published by
|
|
8
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
* (at your option) any later version.
|
|
10
|
+
*
|
|
11
|
+
* Democratize Quality MCP Server is distributed in the hope that it will be useful,
|
|
12
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
* GNU Affero General Public License for more details.
|
|
15
|
+
*
|
|
16
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
17
|
+
* along with Democratize Quality MCP Server. If not, see <https://www.gnu.org/licenses/>.
|
|
18
|
+
*/
|
|
19
|
+
|
|
1
20
|
/**
|
|
2
21
|
* API Tools Configuration
|
|
3
22
|
* Configuration specific to API testing tools
|
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (C) 2025 Democratize Quality
|
|
3
|
+
*
|
|
4
|
+
* This file is part of Democratize Quality MCP Server.
|
|
5
|
+
*
|
|
6
|
+
* Democratize Quality MCP Server is free software: you can redistribute it and/or modify
|
|
7
|
+
* it under the terms of the GNU Affero General Public License as published by
|
|
8
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
* (at your option) any later version.
|
|
10
|
+
*
|
|
11
|
+
* Democratize Quality MCP Server is distributed in the hope that it will be useful,
|
|
12
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
* GNU Affero General Public License for more details.
|
|
15
|
+
*
|
|
16
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
17
|
+
* along with Democratize Quality MCP Server. If not, see <https://www.gnu.org/licenses/>.
|
|
18
|
+
*/
|
|
19
|
+
|
|
1
20
|
/**
|
|
2
21
|
* Browser tool-specific configuration
|
|
3
22
|
* Settings for all browser automation tools
|
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (C) 2025 Democratize Quality
|
|
3
|
+
*
|
|
4
|
+
* This file is part of Democratize Quality MCP Server.
|
|
5
|
+
*
|
|
6
|
+
* Democratize Quality MCP Server is free software: you can redistribute it and/or modify
|
|
7
|
+
* it under the terms of the GNU Affero General Public License as published by
|
|
8
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
* (at your option) any later version.
|
|
10
|
+
*
|
|
11
|
+
* Democratize Quality MCP Server is distributed in the hope that it will be useful,
|
|
12
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
* GNU Affero General Public License for more details.
|
|
15
|
+
*
|
|
16
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
17
|
+
* along with Democratize Quality MCP Server. If not, see <https://www.gnu.org/licenses/>.
|
|
18
|
+
*/
|
|
19
|
+
|
|
1
20
|
/**
|
|
2
21
|
* Default tool configuration
|
|
3
22
|
* These settings apply to all tools unless overridden by specific tool configs
|