@rashidazarang/airtable-mcp 1.6.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. package/.github/ISSUE_TEMPLATE/bug-report.yml +173 -0
  2. package/.github/ISSUE_TEMPLATE/feature-request.yml +209 -0
  3. package/.github/ISSUE_TEMPLATE/security-report.yml +216 -0
  4. package/.github/pull_request_template.md +245 -0
  5. package/.github/workflows/ci-cd.yml +408 -0
  6. package/.github/workflows/security-audit.yml +316 -0
  7. package/API_DOCUMENTATION.md +897 -0
  8. package/CODE_OF_CONDUCT.md +181 -0
  9. package/Dockerfile.production +127 -0
  10. package/README.md +1 -0
  11. package/airtable-clipper/CHANGELOG.md +198 -0
  12. package/airtable-clipper/CHROME_STORE_SUBMISSION.md +343 -0
  13. package/airtable-clipper/LAUNCH_STRATEGY.md +495 -0
  14. package/airtable-clipper/LICENSE +21 -0
  15. package/airtable-clipper/OAUTH_SETUP.md +51 -0
  16. package/airtable-clipper/PRIVACY_POLICY.md +187 -0
  17. package/airtable-clipper/README.md +575 -0
  18. package/airtable-clipper/SUBMIT_TO_CHROME_STORE.md +273 -0
  19. package/airtable-clipper/build.sh +85 -0
  20. package/airtable-clipper/docs/QUICK_START.md +99 -0
  21. package/airtable-clipper/docs/SETUP.md +291 -0
  22. package/airtable-clipper/extension/background.js +337 -0
  23. package/airtable-clipper/extension/base-setup.html +324 -0
  24. package/airtable-clipper/extension/base-setup.js +471 -0
  25. package/airtable-clipper/extension/content.js +771 -0
  26. package/airtable-clipper/extension/icons/README.md +69 -0
  27. package/airtable-clipper/extension/icons/icon-16.png +3 -0
  28. package/airtable-clipper/extension/manifest.json +73 -0
  29. package/airtable-clipper/extension/popup.html +144 -0
  30. package/airtable-clipper/extension/popup.js +475 -0
  31. package/airtable-clipper/extension/styles/content.css +229 -0
  32. package/airtable-clipper/extension/styles/popup.css +477 -0
  33. package/airtable-clipper/privacy-policy.md +63 -0
  34. package/airtable-clipper/releases/v1.0.0/background.js +337 -0
  35. package/airtable-clipper/releases/v1.0.0/base-setup.html +324 -0
  36. package/airtable-clipper/releases/v1.0.0/base-setup.js +471 -0
  37. package/airtable-clipper/releases/v1.0.0/content.js +771 -0
  38. package/airtable-clipper/releases/v1.0.0/icons/README.md +69 -0
  39. package/airtable-clipper/releases/v1.0.0/icons/icon-128.png +2 -0
  40. package/airtable-clipper/releases/v1.0.0/icons/icon-16.png +3 -0
  41. package/airtable-clipper/releases/v1.0.0/icons/icon-32.png +2 -0
  42. package/airtable-clipper/releases/v1.0.0/icons/icon-48.png +2 -0
  43. package/airtable-clipper/releases/v1.0.0/manifest.json +73 -0
  44. package/airtable-clipper/releases/v1.0.0/popup.html +144 -0
  45. package/airtable-clipper/releases/v1.0.0/popup.js +475 -0
  46. package/airtable-clipper/releases/v1.0.0/sidepanel.html +25 -0
  47. package/airtable-clipper/releases/v1.0.0/styles/content.css +229 -0
  48. package/airtable-clipper/releases/v1.0.0/styles/popup.css +477 -0
  49. package/airtable-clipper/releases/v1.0.1/background.js +337 -0
  50. package/airtable-clipper/releases/v1.0.1/base-setup.html +324 -0
  51. package/airtable-clipper/releases/v1.0.1/base-setup.js +471 -0
  52. package/airtable-clipper/releases/v1.0.1/content.js +771 -0
  53. package/airtable-clipper/releases/v1.0.1/icons/README.md +69 -0
  54. package/airtable-clipper/releases/v1.0.1/icons/icon-128.png +2 -0
  55. package/airtable-clipper/releases/v1.0.1/icons/icon-16.png +3 -0
  56. package/airtable-clipper/releases/v1.0.1/icons/icon-32.png +2 -0
  57. package/airtable-clipper/releases/v1.0.1/icons/icon-48.png +2 -0
  58. package/airtable-clipper/releases/v1.0.1/manifest.json +70 -0
  59. package/airtable-clipper/releases/v1.0.1/popup.html +157 -0
  60. package/airtable-clipper/releases/v1.0.1/popup.js +562 -0
  61. package/airtable-clipper/releases/v1.0.1/sidepanel.html +25 -0
  62. package/airtable-clipper/releases/v1.0.1/styles/content.css +229 -0
  63. package/airtable-clipper/releases/v1.0.1/styles/popup.css +647 -0
  64. package/airtable-clipper/releases/v1.0.2/background.js +337 -0
  65. package/airtable-clipper/releases/v1.0.2/base-setup.html +324 -0
  66. package/airtable-clipper/releases/v1.0.2/base-setup.js +471 -0
  67. package/airtable-clipper/releases/v1.0.2/content.js +771 -0
  68. package/airtable-clipper/releases/v1.0.2/icons/README.md +69 -0
  69. package/airtable-clipper/releases/v1.0.2/icons/icon-128.png +2 -0
  70. package/airtable-clipper/releases/v1.0.2/icons/icon-16.png +3 -0
  71. package/airtable-clipper/releases/v1.0.2/icons/icon-32.png +2 -0
  72. package/airtable-clipper/releases/v1.0.2/icons/icon-48.png +2 -0
  73. package/airtable-clipper/releases/v1.0.2/manifest.json +62 -0
  74. package/airtable-clipper/releases/v1.0.2/popup.html +157 -0
  75. package/airtable-clipper/releases/v1.0.2/popup.js +567 -0
  76. package/airtable-clipper/releases/v1.0.2/sidepanel.html +25 -0
  77. package/airtable-clipper/releases/v1.0.2/styles/content.css +229 -0
  78. package/airtable-clipper/releases/v1.0.2/styles/popup.css +647 -0
  79. package/airtable-clipper/terms-of-service.md +124 -0
  80. package/airtable-clipper/test-credentials.md +61 -0
  81. package/airtable-clipper/test-extension/background.js +337 -0
  82. package/airtable-clipper/test-extension/base-setup.html +324 -0
  83. package/airtable-clipper/test-extension/base-setup.js +471 -0
  84. package/airtable-clipper/test-extension/content.js +873 -0
  85. package/airtable-clipper/test-extension/icons/README.md +69 -0
  86. package/airtable-clipper/test-extension/icons/icon-128.png +2 -0
  87. package/airtable-clipper/test-extension/icons/icon-16.png +3 -0
  88. package/airtable-clipper/test-extension/icons/icon-32.png +2 -0
  89. package/airtable-clipper/test-extension/icons/icon-48.png +2 -0
  90. package/airtable-clipper/test-extension/manifest.json +72 -0
  91. package/airtable-clipper/test-extension/popup.html +274 -0
  92. package/airtable-clipper/test-extension/popup.js +729 -0
  93. package/airtable-clipper/test-extension/sidepanel.html +25 -0
  94. package/airtable-clipper/test-extension/styles/content.css +229 -0
  95. package/airtable-clipper/test-extension/styles/popup.css +794 -0
  96. package/airtable_mcp_v2.js +1505 -0
  97. package/airtable_mcp_v2_oauth.js +1048 -0
  98. package/airtable_mcp_v3_advanced.js +1161 -0
  99. package/airtable_simple_production.js +532 -0
  100. package/docker-compose.production.yml +366 -0
  101. package/helm/airtable-mcp/Chart.yaml +122 -0
  102. package/helm/airtable-mcp/values.yaml +538 -0
  103. package/k8s/deployment.yaml +402 -0
  104. package/k8s/namespace.yaml +108 -0
  105. package/k8s/service.yaml +194 -0
  106. package/monitoring/alerts.yml +289 -0
  107. package/monitoring/prometheus.yml +224 -0
  108. package/package.json +6 -6
  109. package/.claude/settings.local.json +0 -12
  110. package/airtable-mcp-1.1.0.tgz +0 -0
  111. package/airtable_enhanced.js +0 -499
  112. package/airtable_simple_v1.2.4_backup.js +0 -277
  113. package/airtable_v1.4.0.js +0 -654
  114. package/rashidazarang-airtable-mcp-1.1.0.tgz +0 -0
  115. package/rashidazarang-airtable-mcp-1.2.0.tgz +0 -0
  116. package/rashidazarang-airtable-mcp-1.2.1.tgz +0 -0
@@ -0,0 +1,173 @@
1
+ name: 🐛 Bug Report
2
+ description: Create a comprehensive bug report to help us improve
3
+ title: "[BUG] "
4
+ labels: ["bug", "triage"]
5
+ assignees: []
6
+
7
+ body:
8
+ - type: markdown
9
+ attributes:
10
+ value: |
11
+ ## 🐛 Bug Report for Airtable MCP Server
12
+
13
+ Thank you for taking the time to report a bug! This helps us improve the quality and reliability of the Airtable MCP Server.
14
+
15
+ **🎯 Our Goal**: Achieve 100/100 Trust Score with your help!
16
+
17
+ - type: checkboxes
18
+ id: preflight
19
+ attributes:
20
+ label: 🔍 Pre-flight Checklist
21
+ description: Please verify you've completed these steps before submitting
22
+ options:
23
+ - label: I've searched existing issues and this hasn't been reported yet
24
+ required: true
25
+ - label: I've read the documentation and troubleshooting guide
26
+ required: true
27
+ - label: I'm using the latest version of the MCP server
28
+ required: true
29
+ - label: I've tested with the minimal reproduction case
30
+ required: true
31
+
32
+ - type: dropdown
33
+ id: severity
34
+ attributes:
35
+ label: 🚨 Severity Level
36
+ description: How critical is this bug?
37
+ options:
38
+ - Critical - Server crashes or data loss
39
+ - High - Major functionality broken
40
+ - Medium - Minor functionality issues
41
+ - Low - Cosmetic or documentation issues
42
+ default: 1
43
+ validations:
44
+ required: true
45
+
46
+ - type: dropdown
47
+ id: component
48
+ attributes:
49
+ label: 🎯 Component Affected
50
+ description: Which component has the issue?
51
+ options:
52
+ - MCP Protocol Implementation
53
+ - OAuth2 Authentication
54
+ - Airtable API Integration
55
+ - Security Features
56
+ - Rate Limiting
57
+ - Logging System
58
+ - Docker Container
59
+ - Documentation
60
+ - CI/CD Pipeline
61
+ - Other
62
+ default: 0
63
+ validations:
64
+ required: true
65
+
66
+ - type: textarea
67
+ id: description
68
+ attributes:
69
+ label: 📝 Bug Description
70
+ description: A clear and concise description of what the bug is
71
+ placeholder: Describe what happened and what you expected to happen...
72
+ validations:
73
+ required: true
74
+
75
+ - type: textarea
76
+ id: reproduction
77
+ attributes:
78
+ label: 🔄 Steps to Reproduce
79
+ description: Detailed steps to reproduce the behavior
80
+ placeholder: |
81
+ 1. Start the MCP server with...
82
+ 2. Send a request to...
83
+ 3. Observe the error...
84
+ validations:
85
+ required: true
86
+
87
+ - type: textarea
88
+ id: expected
89
+ attributes:
90
+ label: ✅ Expected Behavior
91
+ description: What should have happened instead?
92
+ placeholder: Describe the expected behavior...
93
+ validations:
94
+ required: true
95
+
96
+ - type: textarea
97
+ id: actual
98
+ attributes:
99
+ label: ❌ Actual Behavior
100
+ description: What actually happened?
101
+ placeholder: Describe what actually occurred...
102
+ validations:
103
+ required: true
104
+
105
+ - type: textarea
106
+ id: environment
107
+ attributes:
108
+ label: 🖥️ Environment Information
109
+ description: Your environment details
110
+ value: |
111
+ **Server Version**:
112
+ **Node.js Version**:
113
+ **Operating System**:
114
+ **MCP Client**:
115
+ **Airtable API Version**:
116
+ **Authentication Method**:
117
+ render: markdown
118
+ validations:
119
+ required: true
120
+
121
+ - type: textarea
122
+ id: logs
123
+ attributes:
124
+ label: 📋 Relevant Logs
125
+ description: Any relevant log output (please redact sensitive information)
126
+ placeholder: Paste relevant logs here...
127
+ render: shell
128
+
129
+ - type: textarea
130
+ id: config
131
+ attributes:
132
+ label: ⚙️ Configuration
133
+ description: Relevant configuration (please redact sensitive values)
134
+ placeholder: |
135
+ Environment variables, config files, or command line arguments used...
136
+ render: yaml
137
+
138
+ - type: textarea
139
+ id: additional
140
+ attributes:
141
+ label: ➕ Additional Context
142
+ description: Add any other context about the problem here
143
+ placeholder: |
144
+ - Screenshots
145
+ - Related issues
146
+ - Workarounds tried
147
+ - Network configuration
148
+ - Browser/client details
149
+
150
+ - type: checkboxes
151
+ id: contribution
152
+ attributes:
153
+ label: 🤝 Contribution
154
+ description: Are you willing to help fix this issue?
155
+ options:
156
+ - label: I'm willing to submit a pull request to fix this bug
157
+ - label: I can provide additional testing for the fix
158
+ - label: I can help with documentation updates
159
+
160
+ - type: markdown
161
+ attributes:
162
+ value: |
163
+ ## 🙏 Thank You!
164
+
165
+ Your bug report helps us improve the Airtable MCP Server and work towards our **100/100 Trust Score** goal.
166
+
167
+ **What happens next?**
168
+ 1. Our team will triage this issue within 24 hours
169
+ 2. We'll add appropriate labels and assign it to a maintainer
170
+ 3. We'll provide updates on progress and estimated timeline
171
+ 4. Once fixed, we'll include it in the next release
172
+
173
+ **Need immediate help?** Check out our [troubleshooting guide](./TROUBLESHOOTING.md) or start a [discussion](https://github.com/rashidazarang/airtable-mcp/discussions).
@@ -0,0 +1,209 @@
1
+ name: ✨ Feature Request
2
+ description: Suggest an enhancement or new feature for the Airtable MCP Server
3
+ title: "[FEATURE] "
4
+ labels: ["enhancement", "feature-request"]
5
+ assignees: []
6
+
7
+ body:
8
+ - type: markdown
9
+ attributes:
10
+ value: |
11
+ ## ✨ Feature Request for Airtable MCP Server
12
+
13
+ Thank you for suggesting a new feature! Your ideas help us build a better MCP server and work towards our **100/100 Trust Score** goal.
14
+
15
+ - type: checkboxes
16
+ id: preflight
17
+ attributes:
18
+ label: 🔍 Pre-flight Checklist
19
+ description: Please verify you've completed these steps
20
+ options:
21
+ - label: I've searched existing issues and feature requests
22
+ required: true
23
+ - label: I've checked the roadmap and planned features
24
+ required: true
25
+ - label: This feature aligns with the MCP protocol standards
26
+ required: true
27
+ - label: I've considered the security implications
28
+ required: true
29
+
30
+ - type: dropdown
31
+ id: category
32
+ attributes:
33
+ label: 🎯 Feature Category
34
+ description: What type of feature is this?
35
+ options:
36
+ - MCP Protocol Enhancement
37
+ - Authentication & Security
38
+ - Airtable API Integration
39
+ - Performance & Optimization
40
+ - Developer Experience
41
+ - Documentation & Guides
42
+ - CI/CD & Testing
43
+ - Monitoring & Observability
44
+ - Enterprise Features
45
+ - Community & Ecosystem
46
+ default: 0
47
+ validations:
48
+ required: true
49
+
50
+ - type: dropdown
51
+ id: priority
52
+ attributes:
53
+ label: 📊 Priority Level
54
+ description: How important is this feature?
55
+ options:
56
+ - Critical - Blocking major use cases
57
+ - High - Significantly improves functionality
58
+ - Medium - Nice to have enhancement
59
+ - Low - Minor improvement or convenience
60
+ default: 2
61
+ validations:
62
+ required: true
63
+
64
+ - type: textarea
65
+ id: problem
66
+ attributes:
67
+ label: 🎯 Problem Statement
68
+ description: What problem does this feature solve?
69
+ placeholder: |
70
+ Describe the current limitation or pain point that this feature would address...
71
+ validations:
72
+ required: true
73
+
74
+ - type: textarea
75
+ id: solution
76
+ attributes:
77
+ label: 💡 Proposed Solution
78
+ description: Describe your proposed feature in detail
79
+ placeholder: |
80
+ Explain how this feature would work and what it would do...
81
+ validations:
82
+ required: true
83
+
84
+ - type: textarea
85
+ id: use-cases
86
+ attributes:
87
+ label: 🎬 Use Cases
88
+ description: Provide specific examples of how this feature would be used
89
+ placeholder: |
90
+ 1. As a developer, I want to...
91
+ 2. When integrating with..., I need to...
92
+ 3. For enterprise customers, this would enable...
93
+ validations:
94
+ required: true
95
+
96
+ - type: textarea
97
+ id: alternatives
98
+ attributes:
99
+ label: 🔄 Alternatives Considered
100
+ description: What other solutions have you considered?
101
+ placeholder: |
102
+ - Alternative approach 1: ...
103
+ - Workaround currently used: ...
104
+ - Why those don't work: ...
105
+
106
+ - type: textarea
107
+ id: implementation
108
+ attributes:
109
+ label: 🛠️ Implementation Ideas
110
+ description: Do you have ideas about how this could be implemented?
111
+ placeholder: |
112
+ - Technical approach: ...
113
+ - Required changes: ...
114
+ - Dependencies: ...
115
+ - API design: ...
116
+
117
+ - type: checkboxes
118
+ id: requirements
119
+ attributes:
120
+ label: 📋 Requirements & Considerations
121
+ description: What should this feature include?
122
+ options:
123
+ - label: Backward compatibility maintained
124
+ - label: Security review required
125
+ - label: Performance impact minimized
126
+ - label: Documentation and examples included
127
+ - label: Unit and integration tests added
128
+ - label: CLI/API interface designed
129
+ - label: Error handling implemented
130
+ - label: Logging and monitoring added
131
+
132
+ - type: textarea
133
+ id: acceptance
134
+ attributes:
135
+ label: ✅ Acceptance Criteria
136
+ description: How do we know when this feature is complete?
137
+ placeholder: |
138
+ - [ ] Feature works as described
139
+ - [ ] All tests pass
140
+ - [ ] Documentation updated
141
+ - [ ] Performance benchmarks met
142
+ - [ ] Security review passed
143
+ validations:
144
+ required: true
145
+
146
+ - type: dropdown
147
+ id: trust-score
148
+ attributes:
149
+ label: 🎯 Trust Score Impact
150
+ description: How would this feature contribute to our 100/100 Trust Score goal?
151
+ options:
152
+ - High Impact - Directly improves security, reliability, or protocol compliance
153
+ - Medium Impact - Enhances developer experience or documentation quality
154
+ - Low Impact - Minor convenience or optimization
155
+ - No Impact - Neutral feature
156
+ default: 1
157
+
158
+ - type: textarea
159
+ id: trust-score-details
160
+ attributes:
161
+ label: 📈 Trust Score Benefits
162
+ description: Explain how this feature supports our Trust Score goals
163
+ placeholder: |
164
+ This feature would improve our Trust Score by:
165
+ - Enhancing security through...
166
+ - Improving protocol compliance via...
167
+ - Better developer experience with...
168
+ - Enterprise readiness by...
169
+
170
+ - type: checkboxes
171
+ id: contribution
172
+ attributes:
173
+ label: 🤝 Contribution Interest
174
+ description: Are you interested in helping implement this feature?
175
+ options:
176
+ - label: I'm willing to implement this feature
177
+ - label: I can help with design and specification
178
+ - label: I can provide testing and feedback
179
+ - label: I can help with documentation
180
+ - label: I can sponsor development of this feature
181
+
182
+ - type: textarea
183
+ id: additional
184
+ attributes:
185
+ label: ➕ Additional Context
186
+ description: Any other information about this feature request
187
+ placeholder: |
188
+ - Links to relevant specifications
189
+ - Examples from other projects
190
+ - User feedback or requests
191
+ - Business justification
192
+ - Timeline requirements
193
+
194
+ - type: markdown
195
+ attributes:
196
+ value: |
197
+ ## 🚀 Next Steps
198
+
199
+ Thank you for your feature request! Here's what happens next:
200
+
201
+ 1. **Triage** (24-48 hours): We'll review and label your request
202
+ 2. **Community Input** (1 week): Other users can comment and vote
203
+ 3. **Technical Review** (1-2 weeks): We'll assess feasibility and design
204
+ 4. **Roadmap Planning**: Approved features get added to our roadmap
205
+ 5. **Implementation**: Features are built according to priority
206
+
207
+ **Want to stay updated?** Watch this repository and join our [discussions](https://github.com/rashidazarang/airtable-mcp/discussions)!
208
+
209
+ **🎯 Our Mission**: Building the most trusted and comprehensive MCP server for Airtable with a perfect **100/100 Trust Score**.
@@ -0,0 +1,216 @@
1
+ name: 🔒 Security Vulnerability Report
2
+ description: Report a security vulnerability privately and responsibly
3
+ title: "[SECURITY] "
4
+ labels: ["security", "urgent"]
5
+ assignees: ["rashidazarang"]
6
+
7
+ body:
8
+ - type: markdown
9
+ attributes:
10
+ value: |
11
+ ## 🔒 Security Vulnerability Report
12
+
13
+ **⚠️ IMPORTANT**: If this is a critical security vulnerability that could be exploited, please **DO NOT** create a public issue. Instead, please email us directly at security@[domain] or use GitHub's private vulnerability reporting feature.
14
+
15
+ For non-critical security improvements or questions, you can use this template.
16
+
17
+ - type: checkboxes
18
+ id: severity-check
19
+ attributes:
20
+ label: 🚨 Severity Assessment
21
+ description: Please confirm this is appropriate for public reporting
22
+ options:
23
+ - label: This is NOT a critical vulnerability that could be immediately exploited
24
+ required: true
25
+ - label: I understand that critical vulnerabilities should be reported privately
26
+ required: true
27
+ - label: This is a security improvement suggestion or non-critical finding
28
+ required: true
29
+
30
+ - type: dropdown
31
+ id: vulnerability-type
32
+ attributes:
33
+ label: 🎯 Vulnerability Type
34
+ description: What type of security issue is this?
35
+ options:
36
+ - Authentication/Authorization
37
+ - Input Validation
38
+ - Information Disclosure
39
+ - Configuration Security
40
+ - Dependency Vulnerability
41
+ - Cross-Site Scripting (XSS)
42
+ - SQL Injection
43
+ - Code Injection
44
+ - Denial of Service
45
+ - Cryptographic Issue
46
+ - Access Control
47
+ - Security Misconfiguration
48
+ - Other
49
+ validations:
50
+ required: true
51
+
52
+ - type: dropdown
53
+ id: severity
54
+ attributes:
55
+ label: 📊 Severity Level
56
+ description: Based on CVSS or similar standards
57
+ options:
58
+ - Info - No immediate security impact
59
+ - Low - Minimal security impact
60
+ - Medium - Moderate security impact
61
+ - High - Significant security impact
62
+ - Critical - Severe security impact
63
+ default: 1
64
+ validations:
65
+ required: true
66
+
67
+ - type: textarea
68
+ id: description
69
+ attributes:
70
+ label: 📝 Vulnerability Description
71
+ description: Describe the security issue in detail
72
+ placeholder: |
73
+ Provide a clear description of the security vulnerability or concern...
74
+ validations:
75
+ required: true
76
+
77
+ - type: textarea
78
+ id: impact
79
+ attributes:
80
+ label: 💥 Potential Impact
81
+ description: What could an attacker accomplish?
82
+ placeholder: |
83
+ - Data exposure: ...
84
+ - Unauthorized access: ...
85
+ - System compromise: ...
86
+ - Service disruption: ...
87
+ validations:
88
+ required: true
89
+
90
+ - type: textarea
91
+ id: reproduction
92
+ attributes:
93
+ label: 🔄 Reproduction Steps
94
+ description: How can this vulnerability be reproduced? (Use general terms for public issues)
95
+ placeholder: |
96
+ 1. Configure the server with...
97
+ 2. Send a request to...
98
+ 3. Observe the security issue...
99
+ validations:
100
+ required: true
101
+
102
+ - type: textarea
103
+ id: environment
104
+ attributes:
105
+ label: 🖥️ Affected Environment
106
+ description: Where does this vulnerability exist?
107
+ value: |
108
+ **Server Version**:
109
+ **Component**:
110
+ **Configuration**:
111
+ **Operating System**:
112
+ **Deployment Method**:
113
+ render: markdown
114
+ validations:
115
+ required: true
116
+
117
+ - type: textarea
118
+ id: mitigation
119
+ attributes:
120
+ label: 🛡️ Suggested Mitigation
121
+ description: How do you think this should be fixed?
122
+ placeholder: |
123
+ - Input validation: ...
124
+ - Authentication checks: ...
125
+ - Configuration changes: ...
126
+ - Code modifications: ...
127
+
128
+ - type: textarea
129
+ id: workaround
130
+ attributes:
131
+ label: 🔧 Temporary Workaround
132
+ description: Is there a way users can protect themselves now?
133
+ placeholder: |
134
+ Users can temporarily mitigate this by:
135
+ - Configuring...
136
+ - Avoiding...
137
+ - Using...
138
+
139
+ - type: checkboxes
140
+ id: affected-components
141
+ attributes:
142
+ label: 🎯 Affected Components
143
+ description: Which parts of the system are affected?
144
+ options:
145
+ - label: MCP Protocol Handler
146
+ - label: OAuth2 Authentication
147
+ - label: API Token Handling
148
+ - label: Rate Limiting
149
+ - label: Input Validation
150
+ - label: Logging System
151
+ - label: Docker Container
152
+ - label: CI/CD Pipeline
153
+ - label: Documentation/Examples
154
+ - label: Dependencies
155
+
156
+ - type: dropdown
157
+ id: disclosure
158
+ attributes:
159
+ label: 📅 Disclosure Timeline
160
+ description: When should this be publicly disclosed?
161
+ options:
162
+ - Immediately (already public or low risk)
163
+ - After fix is released
164
+ - Coordinated disclosure (30-90 days)
165
+ - Vendor discretion
166
+ default: 1
167
+ validations:
168
+ required: true
169
+
170
+ - type: textarea
171
+ id: references
172
+ attributes:
173
+ label: 📚 References
174
+ description: Any relevant links or documentation
175
+ placeholder: |
176
+ - CVE references: ...
177
+ - Security advisories: ...
178
+ - Documentation: ...
179
+ - Similar issues: ...
180
+
181
+ - type: checkboxes
182
+ id: responsible-disclosure
183
+ attributes:
184
+ label: 🤝 Responsible Disclosure
185
+ description: Please confirm your commitment to responsible disclosure
186
+ options:
187
+ - label: I will not publicly disclose details until a fix is available
188
+ required: true
189
+ - label: I will coordinate with the maintainers on disclosure timing
190
+ required: true
191
+ - label: I understand this may be moved to a private security advisory
192
+ required: true
193
+
194
+ - type: markdown
195
+ attributes:
196
+ value: |
197
+ ## 🔒 Security Response Process
198
+
199
+ **Our commitment to security:**
200
+
201
+ 1. **Acknowledgment** (24 hours): We'll confirm receipt of your report
202
+ 2. **Initial Assessment** (48 hours): We'll evaluate severity and impact
203
+ 3. **Investigation** (1-7 days): We'll reproduce and analyze the issue
204
+ 4. **Fix Development** (varies): We'll develop and test a solution
205
+ 5. **Release & Disclosure** (coordinated): We'll release fixes and advisories
206
+
207
+ **🎯 Trust Score Impact**: Security vulnerabilities directly impact our **100/100 Trust Score** goal. Your responsible reporting helps us maintain the highest security standards.
208
+
209
+ **Contact Information:**
210
+ - Email: security@[domain] (for critical issues)
211
+ - GitHub Security Advisories (preferred for coordination)
212
+ - Matrix/Discord: [community channels] (for questions)
213
+
214
+ **Bug Bounty**: While we don't currently have a formal bug bounty program, we deeply appreciate security researchers and will acknowledge your contributions publicly (with your permission).
215
+
216
+ Thank you for helping keep the Airtable MCP Server secure! 🙏