-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
45 lines (45 loc) · 1.35 KB
/
server.json
File metadata and controls
45 lines (45 loc) · 1.35 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.bugfender/mcp",
"title": "Bugfender",
"description": "Access Bugfender logs, crashes, devices, and user feedback from MCP-enabled clients.",
"version": "0.5.0",
"websiteUrl": "https://github.com/bugfender/bugfender-mcp#readme",
"repository": {
"url": "https://github.com/bugfender/bugfender-mcp",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"identifier": "@bugfender/mcp",
"version": "0.5.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "BUGFENDER_API_TOKEN",
"description": "Bugfender API access token from MCP setup.",
"format": "string",
"isRequired": true,
"isSecret": true
},
{
"name": "BUGFENDER_REFRESH_TOKEN",
"description": "Refresh token for automatic session renewal (recommended).",
"format": "string",
"isRequired": false,
"isSecret": true
},
{
"name": "BUGFENDER_API_URL",
"description": "API base URL override; defaults to https://dashboard.bugfender.com/api",
"format": "string",
"isRequired": false,
"isSecret": false
}
]
}
]
}