Skip to content

Commit c2fca16

Browse files
Add wopee-mcp server (#99)
Signed-off-by: Marcel Veselka <marcel.veselka@tesena.com>
1 parent 6b3bc6f commit c2fca16

1 file changed

Lines changed: 57 additions & 0 deletions

File tree

servers/io.wopee-mcp.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "io.wopee-mcp",
4+
"name": "Wopee MCP",
5+
"alias": "wopee",
6+
"description": "MCP server for autonomous end-to-end testing with Wopee.io. Analyzes web applications, generates and executes Playwright-based functional tests, and validates results.",
7+
"icon": "https://avatars.githubusercontent.com/u/105428871?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["developer-tools"],
10+
"tags": ["testing", "e2e", "automation", "playwright", "qa"],
11+
"transport": {
12+
"type": "stdio",
13+
"command": "npx",
14+
"args": ["-y", "wopee-mcp"],
15+
"env": {
16+
"WOPEE_API_KEY": "${input:WOPEE_API_KEY}"
17+
},
18+
"metadata": {
19+
"inputs": [
20+
{
21+
"id": "WOPEE_API_KEY",
22+
"label": "Wopee API Key",
23+
"description": "API key for the Wopee.io platform",
24+
"type": "text",
25+
"required": true,
26+
"secret": true,
27+
"obtain": {
28+
"url": "https://cmd.wopee.io",
29+
"instructions": "1. Sign up at cmd.wopee.io\n2. Navigate to your project settings\n3. Copy the API key",
30+
"button_label": "Get API Key"
31+
}
32+
}
33+
]
34+
}
35+
},
36+
"auth": {
37+
"type": "api_key",
38+
"instructions": "Get a Wopee API key at https://cmd.wopee.io"
39+
},
40+
"contributor": {
41+
"name": "Wopee.io",
42+
"github": "Wopee-io",
43+
"url": "https://wopee.io"
44+
},
45+
"links": {
46+
"repository": "https://github.com/Wopee-io/wopee-mcp",
47+
"homepage": "https://wopee.io",
48+
"documentation": "https://github.com/Wopee-io/wopee-mcp#readme"
49+
},
50+
"platforms": ["all"],
51+
"capabilities": {
52+
"tools": true,
53+
"resources": false,
54+
"prompts": false,
55+
"read_only_mode": false
56+
}
57+
}

0 commit comments

Comments
 (0)