opentestmcp 0.3.1 → 0.3.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/README.md +2 -2
- package/bin/cli.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ This writes an `opentest` MCP server into `~/.cursor/mcp.json`:
|
|
|
28
28
|
}
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
-
Replace `ot_live_YOUR_API_KEY_HERE` with an API key from OpenTest, then restart Cursor or toggle the MCP server off/on.
|
|
31
|
+
Replace `ot_live_YOUR_API_KEY_HERE` with an API key from [OpenTest settings](https://www.flowtest.opentest.live/settings/), then restart Cursor or toggle the MCP server off/on.
|
|
32
32
|
|
|
33
33
|
You can also pass the key directly:
|
|
34
34
|
|
|
@@ -56,7 +56,7 @@ npx opentestmcp install --project
|
|
|
56
56
|
After installing, ask your coding agent:
|
|
57
57
|
|
|
58
58
|
```text
|
|
59
|
-
Use OpenTest to
|
|
59
|
+
Use the OpenTest MCP to convert my login endpoint into an MCP tool.
|
|
60
60
|
```
|
|
61
61
|
|
|
62
62
|
```text
|
package/bin/cli.js
CHANGED
|
@@ -122,9 +122,9 @@ Server name: ${serverName}
|
|
|
122
122
|
Backend: ${config.mcpServers[serverName].env.OPENTEST_BACKEND}
|
|
123
123
|
|
|
124
124
|
Next steps:
|
|
125
|
-
1. ${usedPlaceholder ? `Replace ${API_KEY_PLACEHOLDER} with your OpenTest API key in ${configPath}
|
|
125
|
+
1. ${usedPlaceholder ? `Replace ${API_KEY_PLACEHOLDER} with your OpenTest API key in ${configPath}. Find or create one at https://www.flowtest.opentest.live/settings/.` : "Your OpenTest API key was written to the MCP config."}
|
|
126
126
|
2. Restart Cursor or toggle the OpenTest MCP server off/on.
|
|
127
|
-
3. Ask your agent: "Use OpenTest to
|
|
127
|
+
3. Ask your agent: "Use the OpenTest MCP to convert my login endpoint into an MCP tool." Then open https://www.flowtest.opentest.live/ to see the session and generated MCP.
|
|
128
128
|
`);
|
|
129
129
|
}
|
|
130
130
|
|