mock-mcp 0.2.1 → 0.2.2
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/dist/index.js +1 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -5,6 +5,7 @@ import { TestMockMCPServer, } from "./server/test-mock-mcp-server.js";
|
|
|
5
5
|
import { BatchMockCollector, } from "./client/batch-mock-collector.js";
|
|
6
6
|
import { connect } from "./client/connect.js";
|
|
7
7
|
const DEFAULT_PORT = 3002;
|
|
8
|
+
console.error('mock-mcp running');
|
|
8
9
|
async function runCli() {
|
|
9
10
|
const cliArgs = process.argv.slice(2);
|
|
10
11
|
let port = Number.parseInt(process.env.MCP_SERVER_PORT ?? "", 10);
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mock-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "An MCP server enabling LLMs to write integration tests through live test environment interaction",
|
|
5
5
|
"main": "./dist/connect.cjs",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
|
-
"mock-mcp": "dist/index.js"
|
|
8
|
+
"mock-mcp": "./dist/index.js"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist"
|