@robotyxx/robotyx-mcp 0.1.0

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/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@robotyxx/robotyx-mcp",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "MCP server for Robotyx — read your test plans (TestSuites, TestCases, functional TestSteps) and recorded Workflows into Claude Code or any MCP client, e.g. to generate WebDriverIO/Playwright tests in your own repo. Bring your own rx_ API key.",
6
+ "keywords": [
7
+ "mcp",
8
+ "model-context-protocol",
9
+ "robotyx",
10
+ "test-management",
11
+ "playwright",
12
+ "webdriverio"
13
+ ],
14
+ "license": "MIT",
15
+ "bin": {
16
+ "robotyx-mcp": "dist/index.js"
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md"
21
+ ],
22
+ "engines": {
23
+ "node": ">=18"
24
+ },
25
+ "scripts": {
26
+ "dev": "tsx src/index.ts",
27
+ "build": "tsc",
28
+ "start": "node dist/index.js",
29
+ "prepublishOnly": "npm run build"
30
+ },
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
34
+ "dependencies": {
35
+ "@modelcontextprotocol/sdk": "^1.27.1"
36
+ },
37
+ "devDependencies": {
38
+ "@types/node": "^20.14.0",
39
+ "tsx": "^4.19.0",
40
+ "typescript": "^5.5.0"
41
+ }
42
+ }