-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
30 lines (30 loc) · 894 Bytes
/
server.json
File metadata and controls
30 lines (30 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-16/server.schema.json",
"name": "io.testingbot/mcp-server",
"description": "TestingBot's Official MCP Server for AI-powered testing automation",
"version": "1.0.0",
"packages": [
{
"registryType": "npm",
"identifier": "@testingbot/mcp-server",
"version": "1.0.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "TESTINGBOT_KEY",
"isRequired": true,
"isSecret": false,
"description": "TestingBot API key (also accepts TB_KEY or TESTINGBOT_USERNAME)"
},
{
"name": "TESTINGBOT_SECRET",
"isRequired": true,
"isSecret": true,
"description": "TestingBot API secret (also accepts TB_SECRET or TESTINGBOT_ACCESS_KEY)"
}
]
}
]
}