File tree Expand file tree Collapse file tree 3 files changed +99
-0
lines changed Expand file tree Collapse file tree 3 files changed +99
-0
lines changed Original file line number Diff line number Diff line change
1
+ # See https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms
2
+ # and https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
3
+ name : Bug Report
4
+ description : Something is not working in one or more MCP servers
5
+ title : " [BUG]: "
6
+ labels : ["bug", "needs-triage"]
7
+ body :
8
+ - type : checkboxes
9
+ attributes :
10
+ label : Is there an existing issue for this?
11
+ description : Please search to see if an issue already exists for the bug you encountered.
12
+ options :
13
+ - label : I have searched the existing issues
14
+ required : true
15
+ - type : textarea
16
+ attributes :
17
+ label : Current Behavior
18
+ description : |
19
+ A concise description of what you're experiencing.
20
+ **Do not paste links to attachments with logs and/or images, as all issues with attachments will get deleted.**
21
+ Use the `Relevant log output` field to paste redacted log output without personal identifying information (PII).
22
+ You can Ctrl/Cmd+V the screenshot, which would appear as a rendered image if it doesn't contain any PII.
23
+ validations :
24
+ required : false
25
+ - type : textarea
26
+ attributes :
27
+ label : Expected Behavior
28
+ description : A concise description of what you expected to happen.
29
+ validations :
30
+ required : false
31
+ - type : textarea
32
+ attributes :
33
+ label : Steps To Reproduce
34
+ description : Steps to reproduce the behavior.
35
+ placeholder : |
36
+ 1. In this environment...
37
+ 1. With this config...
38
+ 1. Run '...'
39
+ 1. See error...
40
+ validations :
41
+ required : false
42
+ - type : textarea
43
+ id : logs
44
+ attributes :
45
+ label : Relevant log output or Exception details
46
+ description : Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
47
+ render : shell
48
+ - type : dropdown
49
+ id : os
50
+ attributes :
51
+ label : Operating System
52
+ description : Which operating system are you running the MCP server(s) on?
53
+ options :
54
+ - macOS
55
+ - Linux
56
+ - Windows
57
+ validations :
58
+ required : true
Original file line number Diff line number Diff line change
1
+ blank_issues_enabled : false
2
+ contact_links :
3
+ - name : General Databricks questions
4
+ url : https://help.databricks.com/
5
+ about : Issues related to Databricks and not related to the MCP servers in this repo
6
+
7
+ - name : MCP Documentation
8
+ url : https://databrickslabs.github.io/mcp/
9
+ about : Documentation about MCP
Original file line number Diff line number Diff line change
1
+ # See https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms
2
+ # and https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
3
+ name : Feature Request
4
+ description : Something new needs to happen with one or more MCP servers
5
+ title : " [FEATURE]: "
6
+ labels : ["enhancement", "needs-triage"]
7
+ body :
8
+ - type : checkboxes
9
+ attributes :
10
+ label : Is there an existing issue for this?
11
+ description : Please search to see if an issue already exists for the feature request you're willing to submit
12
+ options :
13
+ - label : I have searched the existing issues
14
+ required : true
15
+ - type : textarea
16
+ attributes :
17
+ label : Problem statement
18
+ description : A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
19
+ validations :
20
+ required : true
21
+ - type : textarea
22
+ attributes :
23
+ label : Proposed Solution
24
+ description : A clear and concise description of what you want to happen.
25
+ validations :
26
+ required : true
27
+ - type : textarea
28
+ attributes :
29
+ label : Additional Context
30
+ description : Add any other context, references or screenshots about the feature request here.
31
+ validations :
32
+ required : false
You can’t perform that action at this time.
0 commit comments