Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions servers/io.wopee-mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"$schema": "../schemas/server-definition.schema.json",
"id": "io.wopee-mcp",
"name": "Wopee MCP",
"alias": "wopee",
"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.",
"icon": "https://avatars.githubusercontent.com/u/105428871?v=4",
"schema_version": "2.1",
"categories": ["developer-tools"],
"tags": ["testing", "e2e", "automation", "playwright", "qa"],
"transport": {
"type": "stdio",
"command": "npx",
"args": ["-y", "wopee-mcp"],
"env": {
"WOPEE_API_KEY": "${input:WOPEE_API_KEY}"
},
"metadata": {
"inputs": [
{
"id": "WOPEE_API_KEY",
"label": "Wopee API Key",
"description": "API key for the Wopee.io platform",
"type": "text",
"required": true,
"secret": true,
"obtain": {
"url": "https://cmd.wopee.io",
"instructions": "1. Sign up at cmd.wopee.io\n2. Navigate to your project settings\n3. Copy the API key",
"button_label": "Get API Key"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Get a Wopee API key at https://cmd.wopee.io"
},
"contributor": {
"name": "Wopee.io",
"github": "Wopee-io",
"url": "https://wopee.io"
},
"links": {
"repository": "https://github.com/Wopee-io/wopee-mcp",
"homepage": "https://wopee.io",
"documentation": "https://github.com/Wopee-io/wopee-mcp#readme"
},
"platforms": ["all"],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
}
}
Loading