forked from SmartBear/smartbear-mcp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
85 lines (85 loc) · 3.63 KB
/
server.json
File metadata and controls
85 lines (85 loc) · 3.63 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json#/definitions/ServerDetail",
"title": "SmartBear MCP",
"name": "com.smartbear/smartbear-mcp",
"description": "MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow.",
"repository": {
"url": "https://github.com/SmartBear/smartbear-mcp",
"source": "github"
},
"version": "0.7.0",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@smartbear/mcp",
"version": "0.7.0",
"transport": {
"type": "stdio"
},
"packageArguments": [],
"environmentVariables": [
{
"name": "BUGSNAG_AUTH_TOKEN",
"description": "BugSnag auth token. Leave empty to disable BugSnag tools. Learn more: https://developer.smartbear.com/smartbear-mcp/docs/bugsnag-integration",
"isRequired": false,
"isSecret": true
},
{
"name": "BUGSNAG_PROJECT_API_KEY",
"description": "BugSnag project API key (optional; narrows interactions to a single project). Learn more: https://developer.smartbear.com/smartbear-mcp/docs/bugsnag-integration",
"isRequired": false,
"isSecret": false
},
{
"name": "REFLECT_API_TOKEN",
"description": "Reflect API token. Leave empty to disable Reflect tools. Learn more: https://developer.smartbear.com/smartbear-mcp/docs/test-hub-integration",
"isRequired": false,
"isSecret": true
},
{
"name": "SWAGGER_API_KEY",
"description": "Swagger API key. Leave empty to disable Swagger tools. Learn more: https://developer.smartbear.com/smartbear-mcp/docs/swagger-portal-integration",
"isRequired": false,
"isSecret": true
},
{
"name": "PACT_BROKER_BASE_URL",
"description": "PactFlow/Pact Broker base URL. Leave empty to disable Pact tools. Learn more: https://developer.smartbear.com/smartbear-mcp/docs/contract-testing-with-pactflow",
"isRequired": false,
"isSecret": false
},
{
"name": "PACT_BROKER_TOKEN",
"description": "PactFlow authentication token. Learn more: https://developer.smartbear.com/smartbear-mcp/docs/contract-testing-with-pactflow",
"isRequired": false,
"isSecret": true
},
{
"name": "PACT_BROKER_USERNAME",
"description": "Pact Broker username (alternative to token). Learn more: https://developer.smartbear.com/smartbear-mcp/docs/contract-testing-with-pactflow",
"isRequired": false,
"isSecret": false
},
{
"name": "PACT_BROKER_PASSWORD",
"description": "Pact Broker password (alternative to token). Learn more: https://developer.smartbear.com/smartbear-mcp/docs/contract-testing-with-pactflow",
"isRequired": false,
"isSecret": true
},
{
"name": "ZEPHYR_API_TOKEN",
"description": "The Zephyr Cloud API token for authentication. Learn more: https://support.smartbear.com/zephyr/docs/en/rest-api/api-access-tokens-management.html",
"isRequired": false,
"isSecret": true
},
{
"name": "ZEPHYR_BASE_URL",
"description": " The Zephyr Cloud API base url. Should be changed depending on the region of your Jira instance. Learn more: https://support.smartbear.com/zephyr-scale-cloud/api-docs/#section/Authentication/Accessing-the-API",
"isRequired": false,
"isSecret": false
}
]
}
]
}