Skip to content

Commit b3eb2f8

Browse files
update mcpb file
1 parent 6b67d33 commit b3eb2f8

File tree

2 files changed

+18
-27
lines changed

2 files changed

+18
-27
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,6 @@ coverage/
3030
# Temporary files
3131
*.tmp
3232
.cache/
33+
34+
# Generated files
35+
*.mcpb

manifest.json

Lines changed: 15 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,29 @@
11
{
2-
"schemaVersion": "0.1.0",
2+
"manifest_version": "0.2",
33
"name": "@testingbot/mcp-server",
44
"version": "1.0.0",
55
"description": "TestingBot's official MCP Server for AI-powered testing automation. Manage browsers, tests, builds, screenshots, storage, team members, and tunnels through conversational interfaces.",
66
"icon": "icon.png",
77
"homepage": "https://github.com/testingbot/mcp-server",
8-
"publisher": {
8+
"author": {
99
"name": "TestingBot",
1010
"url": "https://testingbot.com"
1111
},
12-
"license": "MIT",
13-
"runtime": "node",
14-
"entrypoint": "dist/index.js",
15-
"args": [],
16-
"configSchema": {
17-
"type": "object",
18-
"properties": {
19-
"testingbot-key": {
20-
"type": "string",
21-
"title": "TestingBot API Key",
22-
"description": "Your TestingBot API key from https://testingbot.com/members/user/edit",
23-
"sensitive": true
24-
},
25-
"testingbot-secret": {
26-
"type": "string",
27-
"title": "TestingBot API Secret",
28-
"description": "Your TestingBot API secret from https://testingbot.com/members/user/edit",
29-
"sensitive": true
12+
"server": {
13+
"type": "node",
14+
"entry_point": "dist/index.js",
15+
"mcp_config": {
16+
"command": "node",
17+
"args": [
18+
"${__dirname}/dist/index.js"
19+
],
20+
"env": {
21+
"TESTINGBOT_KEY": "${testingbot-key}",
22+
"TESTINGBOT_SECRET": "${testingbot-secret}"
3023
}
31-
},
32-
"required": ["testingbot-key", "testingbot-secret"]
24+
}
3325
},
34-
"categories": [
35-
"testing",
36-
"automation",
37-
"browsers"
38-
],
26+
"license": "MIT",
3927
"keywords": [
4028
"testingbot",
4129
"testing",

0 commit comments

Comments
 (0)