mcp-dbutils 0.18.0__tar.gz → 0.20.0__tar.gz

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 (193) hide show
  1. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/bug_report_ar.md +60 -0
  2. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/bug_report_en.md +56 -0
  3. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/bug_report_es.md +56 -0
  4. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/bug_report_fr.md +56 -0
  5. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/bug_report_ru.md +56 -0
  6. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/bug_report_zh.md +56 -0
  7. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/config.yml +8 -0
  8. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/documentation_improvement_ar.md +33 -0
  9. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/documentation_improvement_en.md +29 -0
  10. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/documentation_improvement_es.md +29 -0
  11. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/documentation_improvement_fr.md +29 -0
  12. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/documentation_improvement_ru.md +29 -0
  13. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/documentation_improvement_zh.md +29 -0
  14. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/feature_request_ar.md +36 -0
  15. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/feature_request_en.md +32 -0
  16. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/feature_request_es.md +32 -0
  17. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/feature_request_fr.md +32 -0
  18. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/feature_request_ru.md +32 -0
  19. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/feature_request_zh.md +32 -0
  20. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/performance_issue_ar.md +57 -0
  21. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/performance_issue_en.md +53 -0
  22. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/performance_issue_es.md +53 -0
  23. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/performance_issue_fr.md +53 -0
  24. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/performance_issue_ru.md +53 -0
  25. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/performance_issue_zh.md +53 -0
  26. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/security_vulnerability_ar.md +50 -0
  27. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/security_vulnerability_en.md +46 -0
  28. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/security_vulnerability_es.md +46 -0
  29. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/security_vulnerability_fr.md +46 -0
  30. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/security_vulnerability_ru.md +46 -0
  31. mcp_dbutils-0.20.0/.github/ISSUE_TEMPLATE/security_vulnerability_zh.md +46 -0
  32. mcp_dbutils-0.20.0/.github/workflows/issue-translator.yml +15 -0
  33. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/CHANGELOG.md +14 -0
  34. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/PKG-INFO +9 -2
  35. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/README.md +8 -1
  36. mcp_dbutils-0.20.0/README_AR.md +127 -0
  37. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/README_EN.md +1 -1
  38. mcp_dbutils-0.20.0/README_ES.md +116 -0
  39. mcp_dbutils-0.20.0/README_FR.md +116 -0
  40. mcp_dbutils-0.20.0/README_RU.md +123 -0
  41. mcp_dbutils-0.20.0/docs/ar/configuration.md +362 -0
  42. mcp_dbutils-0.20.0/docs/ar/examples/README.md +29 -0
  43. mcp_dbutils-0.20.0/docs/ar/examples/advanced-llm-interactions.md +267 -0
  44. mcp_dbutils-0.20.0/docs/ar/examples/mysql-examples.md +252 -0
  45. mcp_dbutils-0.20.0/docs/ar/examples/postgresql-examples.md +331 -0
  46. mcp_dbutils-0.20.0/docs/ar/examples/sqlite-examples.md +154 -0
  47. mcp_dbutils-0.20.0/docs/ar/installation-platform-specific.md +323 -0
  48. mcp_dbutils-0.20.0/docs/ar/installation.md +347 -0
  49. mcp_dbutils-0.20.0/docs/ar/technical/architecture.md +204 -0
  50. mcp_dbutils-0.20.0/docs/ar/technical/development.md +429 -0
  51. mcp_dbutils-0.20.0/docs/ar/technical/security.md +318 -0
  52. mcp_dbutils-0.20.0/docs/ar/technical/sonarcloud-integration.md +440 -0
  53. mcp_dbutils-0.20.0/docs/ar/technical/testing.md +547 -0
  54. mcp_dbutils-0.20.0/docs/ar/usage.md +231 -0
  55. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/en/configuration.md +5 -0
  56. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/en/examples/advanced-llm-interactions.md +10 -8
  57. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/en/examples/mysql-examples.md +2 -0
  58. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/en/examples/postgresql-examples.md +32 -30
  59. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/en/examples/sqlite-examples.md +2 -0
  60. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/en/installation-platform-specific.md +5 -0
  61. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/en/installation.md +5 -0
  62. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/en/technical/architecture.md +9 -1
  63. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/en/technical/development.md +4 -0
  64. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/en/technical/security.md +2 -0
  65. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/en/technical/sonarcloud-integration.md +17 -2
  66. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/en/technical/testing.md +2 -0
  67. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/en/usage.md +5 -0
  68. mcp_dbutils-0.20.0/docs/es/configuration.md +358 -0
  69. mcp_dbutils-0.20.0/docs/es/examples/README.md +25 -0
  70. mcp_dbutils-0.20.0/docs/es/examples/advanced-llm-interactions.md +267 -0
  71. mcp_dbutils-0.20.0/docs/es/examples/mysql-examples.md +252 -0
  72. mcp_dbutils-0.20.0/docs/es/examples/postgresql-examples.md +331 -0
  73. mcp_dbutils-0.20.0/docs/es/examples/sqlite-examples.md +150 -0
  74. mcp_dbutils-0.20.0/docs/es/installation-platform-specific.md +323 -0
  75. mcp_dbutils-0.20.0/docs/es/installation.md +343 -0
  76. mcp_dbutils-0.20.0/docs/es/technical/architecture.md +204 -0
  77. mcp_dbutils-0.20.0/docs/es/technical/development.md +429 -0
  78. mcp_dbutils-0.20.0/docs/es/technical/security.md +318 -0
  79. mcp_dbutils-0.20.0/docs/es/technical/sonarcloud-integration.md +440 -0
  80. mcp_dbutils-0.20.0/docs/es/technical/testing.md +547 -0
  81. mcp_dbutils-0.20.0/docs/es/usage.md +227 -0
  82. mcp_dbutils-0.20.0/docs/fr/configuration.md +358 -0
  83. mcp_dbutils-0.20.0/docs/fr/examples/README.md +25 -0
  84. mcp_dbutils-0.20.0/docs/fr/examples/advanced-llm-interactions.md +267 -0
  85. mcp_dbutils-0.20.0/docs/fr/examples/mysql-examples.md +252 -0
  86. mcp_dbutils-0.20.0/docs/fr/examples/postgresql-examples.md +331 -0
  87. mcp_dbutils-0.20.0/docs/fr/examples/sqlite-examples.md +150 -0
  88. mcp_dbutils-0.20.0/docs/fr/installation-platform-specific.md +323 -0
  89. mcp_dbutils-0.20.0/docs/fr/installation.md +343 -0
  90. mcp_dbutils-0.20.0/docs/fr/technical/architecture.md +204 -0
  91. mcp_dbutils-0.20.0/docs/fr/technical/development.md +429 -0
  92. mcp_dbutils-0.20.0/docs/fr/technical/security.md +318 -0
  93. mcp_dbutils-0.20.0/docs/fr/technical/sonarcloud-integration.md +440 -0
  94. mcp_dbutils-0.20.0/docs/fr/technical/testing.md +547 -0
  95. mcp_dbutils-0.20.0/docs/fr/usage.md +227 -0
  96. mcp_dbutils-0.20.0/docs/index.md +28 -0
  97. mcp_dbutils-0.20.0/docs/ru/configuration.md +358 -0
  98. mcp_dbutils-0.20.0/docs/ru/examples/README.md +25 -0
  99. mcp_dbutils-0.20.0/docs/ru/examples/advanced-llm-interactions.md +267 -0
  100. mcp_dbutils-0.20.0/docs/ru/examples/mysql-examples.md +331 -0
  101. mcp_dbutils-0.20.0/docs/ru/examples/postgresql-examples.md +495 -0
  102. mcp_dbutils-0.20.0/docs/ru/examples/sqlite-examples.md +150 -0
  103. mcp_dbutils-0.20.0/docs/ru/installation-platform-specific.md +323 -0
  104. mcp_dbutils-0.20.0/docs/ru/installation.md +343 -0
  105. mcp_dbutils-0.20.0/docs/ru/technical/architecture.md +204 -0
  106. mcp_dbutils-0.20.0/docs/ru/technical/development.md +429 -0
  107. mcp_dbutils-0.20.0/docs/ru/technical/security.md +318 -0
  108. mcp_dbutils-0.20.0/docs/ru/technical/sonarcloud-integration.md +440 -0
  109. mcp_dbutils-0.20.0/docs/ru/technical/testing.md +547 -0
  110. mcp_dbutils-0.20.0/docs/ru/usage.md +227 -0
  111. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/zh/configuration.md +2 -0
  112. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/zh/examples/advanced-llm-interactions.md +10 -8
  113. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/zh/examples/mysql-examples.md +2 -0
  114. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/zh/examples/postgresql-examples.md +32 -30
  115. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/zh/examples/sqlite-examples.md +2 -0
  116. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/zh/installation-platform-specific.md +2 -0
  117. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/zh/installation.md +2 -0
  118. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/zh/technical/architecture.md +9 -1
  119. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/zh/technical/development.md +4 -0
  120. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/zh/technical/security.md +2 -0
  121. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/zh/technical/sonarcloud-integration.md +17 -2
  122. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/zh/technical/testing.md +2 -0
  123. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/zh/usage.md +2 -0
  124. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/pyproject.toml +1 -1
  125. mcp_dbutils-0.20.0/scripts/check_docs_consistency.py +277 -0
  126. mcp_dbutils-0.20.0/scripts/check_zh_docs.py +100 -0
  127. mcp_dbutils-0.20.0/scripts/fix_en_nav_links.py +104 -0
  128. mcp_dbutils-0.20.0/scripts/fix_zh_nav_links.py +61 -0
  129. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/.coveragerc +0 -0
  130. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/.github/workflows/code-style.yml +0 -0
  131. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/.github/workflows/quality-assurance.yml +0 -0
  132. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/.github/workflows/release.yml +0 -0
  133. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/.gitignore +0 -0
  134. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/.pre-commit-config.yaml +0 -0
  135. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/.releaserc.json +0 -0
  136. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/Dockerfile +0 -0
  137. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/LICENSE +0 -0
  138. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/config.yaml.example +0 -0
  139. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/document-consistency-check.md +0 -0
  140. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/docs/document-version-history.md +0 -0
  141. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/scripts/fix_imports.sh +0 -0
  142. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/scripts/fix_remaining_issues.sh +0 -0
  143. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/scripts/run_sonar_analysis.sh +0 -0
  144. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/scripts/sonar-ai-fix.fish +0 -0
  145. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/smithery.yaml +0 -0
  146. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/sonar-project.properties +0 -0
  147. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/__init__.py +0 -0
  148. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/base.py +0 -0
  149. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/config.py +0 -0
  150. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/log.py +0 -0
  151. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/mysql/__init__.py +0 -0
  152. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/mysql/config.py +0 -0
  153. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/mysql/handler.py +0 -0
  154. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/mysql/server.py +0 -0
  155. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/postgres/__init__.py +0 -0
  156. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/postgres/config.py +0 -0
  157. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/postgres/handler.py +0 -0
  158. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/postgres/server.py +0 -0
  159. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/sqlite/__init__.py +0 -0
  160. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/sqlite/config.py +0 -0
  161. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/sqlite/handler.py +0 -0
  162. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/sqlite/server.py +0 -0
  163. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/src/mcp_dbutils/stats.py +0 -0
  164. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/conftest.py +0 -0
  165. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/__init__.py +0 -0
  166. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/conftest.py +0 -0
  167. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/fixtures.py +0 -0
  168. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/test_list_connections.py +0 -0
  169. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/test_logging.py +0 -0
  170. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/test_monitoring.py +0 -0
  171. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/test_monitoring_enhanced.py +0 -0
  172. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/test_mysql.py +0 -0
  173. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/test_mysql_config.py +0 -0
  174. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/test_mysql_config_helpers.py +0 -0
  175. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/test_mysql_handler_extended.py +0 -0
  176. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/test_postgres.py +0 -0
  177. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/test_postgres_config.py +0 -0
  178. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/test_prompts.py +0 -0
  179. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/test_sqlite.py +0 -0
  180. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/test_sqlite_config.py +0 -0
  181. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/test_sqlite_handler_extended.py +0 -0
  182. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/test_tools.py +0 -0
  183. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/integration/test_tools_advanced.py +0 -0
  184. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/unit/test_base.py +0 -0
  185. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/unit/test_base_handlers.py +0 -0
  186. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/unit/test_base_helpers.py +0 -0
  187. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/unit/test_base_server.py +0 -0
  188. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/unit/test_log.py +0 -0
  189. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/unit/test_mysql_handler.py +0 -0
  190. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/unit/test_mysql_server.py +0 -0
  191. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/unit/test_postgres_server.py +0 -0
  192. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/unit/test_sqlite_server.py +0 -0
  193. {mcp_dbutils-0.18.0 → mcp_dbutils-0.20.0}/tests/unit/test_stats.py +0 -0
@@ -0,0 +1,60 @@
1
+ ---
2
+ name: تقرير خطأ
3
+ about: إنشاء تقرير لمساعدتنا على التحسين
4
+ title: "[Bug] "
5
+ labels: bug
6
+ assignees: ''
7
+ ---
8
+
9
+ <!--
10
+ اختيار اللغة / Language Selection:
11
+ [English](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_en.md) |
12
+ [中文](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_zh.md) |
13
+ [Français](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_fr.md) |
14
+ [Español](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_es.md) |
15
+ العربية |
16
+ [Русский](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_ru.md)
17
+ -->
18
+
19
+ <div dir="rtl">
20
+
21
+ ## الوصف
22
+ <!-- وصف واضح وموجز للخطأ -->
23
+
24
+ ## خطوات إعادة الإنتاج
25
+ <!-- خطوات لإعادة إنتاج السلوك -->
26
+ 1. اذهب إلى '...'
27
+ 2. انقر على '....'
28
+ 3. قم بالتمرير لأسفل إلى '....'
29
+ 4. شاهد الخطأ
30
+
31
+ ## السلوك المتوقع
32
+ <!-- وصف واضح وموجز لما كنت تتوقع حدوثه -->
33
+
34
+ ## السلوك الفعلي
35
+ <!-- وصف لما حدث بالفعل -->
36
+
37
+ ## لقطات الشاشة
38
+ <!-- إذا كان ذلك ممكنًا، أضف لقطات شاشة للمساعدة في شرح مشكلتك -->
39
+
40
+ ## البيئة
41
+ <!-- يرجى تقديم معلومات مفصلة عن بيئتك -->
42
+ - إصدار MCP Database Utilities: [مثال: 0.19.0]
43
+ - نظام التشغيل: [مثال: Windows 10, macOS 12.0, Ubuntu 22.04]
44
+ - إصدار Python: [مثال: 3.10.5]
45
+ - نوع وإصدار قاعدة البيانات: [مثال: SQLite 3.39.0, PostgreSQL 14.5, MySQL 8.0.30]
46
+ - عميل MCP المستخدم: [مثال: Claude Desktop, VS Code, Cursor]
47
+
48
+ ## التكوين
49
+ <!-- يرجى تقديم محتوى ملف التكوين الخاص بك (تذكر إزالة المعلومات الحساسة مثل كلمات المرور ومفاتيح API وما إلى ذلك) -->
50
+ ```yaml
51
+ connections:
52
+ example_connection:
53
+ type: sqlite
54
+ path: ":memory:"
55
+ ```
56
+
57
+ ## معلومات إضافية
58
+ <!-- أضف أي سياق آخر حول المشكلة هنا -->
59
+
60
+ </div>
@@ -0,0 +1,56 @@
1
+ ---
2
+ name: Bug Report
3
+ about: Create a report to help us improve
4
+ title: "[Bug] "
5
+ labels: bug
6
+ assignees: ''
7
+ ---
8
+
9
+ <!--
10
+ Language Selection / 语言选择:
11
+ English |
12
+ [中文](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_zh.md) |
13
+ [Français](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_fr.md) |
14
+ [Español](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_es.md) |
15
+ [العربية](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_ar.md) |
16
+ [Русский](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_ru.md)
17
+ -->
18
+
19
+ ## Description
20
+ <!-- A clear and concise description of what the bug is -->
21
+
22
+ ## Steps to Reproduce
23
+ <!-- Steps to reproduce the behavior -->
24
+ 1. Go to '...'
25
+ 2. Click on '....'
26
+ 3. Scroll down to '....'
27
+ 4. See error
28
+
29
+ ## Expected Behavior
30
+ <!-- A clear and concise description of what you expected to happen -->
31
+
32
+ ## Actual Behavior
33
+ <!-- A description of what actually happened -->
34
+
35
+ ## Screenshots
36
+ <!-- If applicable, add screenshots to help explain your problem -->
37
+
38
+ ## Environment
39
+ <!-- Please provide detailed information about your environment -->
40
+ - MCP Database Utilities version: [e.g. 0.19.0]
41
+ - OS: [e.g. Windows 10, macOS 12.0, Ubuntu 22.04]
42
+ - Python version: [e.g. 3.10.5]
43
+ - Database type and version: [e.g. SQLite 3.39.0, PostgreSQL 14.5, MySQL 8.0.30]
44
+ - MCP client used: [e.g. Claude Desktop, VS Code, Cursor]
45
+
46
+ ## Configuration
47
+ <!-- Please provide your configuration file content (remember to remove sensitive information like passwords, API keys, etc.) -->
48
+ ```yaml
49
+ connections:
50
+ example_connection:
51
+ type: sqlite
52
+ path: ":memory:"
53
+ ```
54
+
55
+ ## Additional Information
56
+ <!-- Add any other context about the problem here -->
@@ -0,0 +1,56 @@
1
+ ---
2
+ name: Informe de Error
3
+ about: Crear un informe para ayudarnos a mejorar
4
+ title: "[Bug] "
5
+ labels: bug
6
+ assignees: ''
7
+ ---
8
+
9
+ <!--
10
+ Selección de idioma / Language Selection:
11
+ [English](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_en.md) |
12
+ [中文](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_zh.md) |
13
+ [Français](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_fr.md) |
14
+ Español |
15
+ [العربية](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_ar.md) |
16
+ [Русский](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_ru.md)
17
+ -->
18
+
19
+ ## Descripción
20
+ <!-- Una descripción clara y concisa del error -->
21
+
22
+ ## Pasos para reproducir
23
+ <!-- Pasos para reproducir el comportamiento -->
24
+ 1. Ir a '...'
25
+ 2. Hacer clic en '....'
26
+ 3. Desplazarse hasta '....'
27
+ 4. Ver el error
28
+
29
+ ## Comportamiento esperado
30
+ <!-- Una descripción clara y concisa de lo que esperaba que sucediera -->
31
+
32
+ ## Comportamiento actual
33
+ <!-- Una descripción de lo que realmente sucedió -->
34
+
35
+ ## Capturas de pantalla
36
+ <!-- Si corresponde, agregue capturas de pantalla para ayudar a explicar su problema -->
37
+
38
+ ## Entorno
39
+ <!-- Proporcione información detallada sobre su entorno -->
40
+ - Versión de MCP Database Utilities: [ej. 0.19.0]
41
+ - Sistema operativo: [ej. Windows 10, macOS 12.0, Ubuntu 22.04]
42
+ - Versión de Python: [ej. 3.10.5]
43
+ - Tipo y versión de base de datos: [ej. SQLite 3.39.0, PostgreSQL 14.5, MySQL 8.0.30]
44
+ - Cliente MCP utilizado: [ej. Claude Desktop, VS Code, Cursor]
45
+
46
+ ## Configuración
47
+ <!-- Proporcione el contenido de su archivo de configuración (recuerde eliminar información sensible como contraseñas, claves API, etc.) -->
48
+ ```yaml
49
+ connections:
50
+ example_connection:
51
+ type: sqlite
52
+ path: ":memory:"
53
+ ```
54
+
55
+ ## Información adicional
56
+ <!-- Agregue cualquier otro contexto sobre el problema aquí -->
@@ -0,0 +1,56 @@
1
+ ---
2
+ name: Rapport de Bug
3
+ about: Créer un rapport pour nous aider à améliorer
4
+ title: "[Bug] "
5
+ labels: bug
6
+ assignees: ''
7
+ ---
8
+
9
+ <!--
10
+ Sélection de langue / Language Selection:
11
+ [English](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_en.md) |
12
+ [中文](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_zh.md) |
13
+ Français |
14
+ [Español](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_es.md) |
15
+ [العربية](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_ar.md) |
16
+ [Русский](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_ru.md)
17
+ -->
18
+
19
+ ## Description
20
+ <!-- Une description claire et concise du bug -->
21
+
22
+ ## Étapes pour reproduire
23
+ <!-- Étapes pour reproduire le comportement -->
24
+ 1. Aller à '...'
25
+ 2. Cliquer sur '....'
26
+ 3. Défiler jusqu'à '....'
27
+ 4. Voir l'erreur
28
+
29
+ ## Comportement attendu
30
+ <!-- Une description claire et concise de ce que vous attendiez qu'il se passe -->
31
+
32
+ ## Comportement actuel
33
+ <!-- Une description de ce qui s'est réellement passé -->
34
+
35
+ ## Captures d'écran
36
+ <!-- Si applicable, ajoutez des captures d'écran pour expliquer votre problème -->
37
+
38
+ ## Environnement
39
+ <!-- Veuillez fournir des informations détaillées sur votre environnement -->
40
+ - Version de MCP Database Utilities: [ex: 0.19.0]
41
+ - Système d'exploitation: [ex: Windows 10, macOS 12.0, Ubuntu 22.04]
42
+ - Version de Python: [ex: 3.10.5]
43
+ - Type et version de base de données: [ex: SQLite 3.39.0, PostgreSQL 14.5, MySQL 8.0.30]
44
+ - Client MCP utilisé: [ex: Claude Desktop, VS Code, Cursor]
45
+
46
+ ## Configuration
47
+ <!-- Veuillez fournir le contenu de votre fichier de configuration (n'oubliez pas de supprimer les informations sensibles comme les mots de passe, les clés API, etc.) -->
48
+ ```yaml
49
+ connections:
50
+ example_connection:
51
+ type: sqlite
52
+ path: ":memory:"
53
+ ```
54
+
55
+ ## Informations supplémentaires
56
+ <!-- Ajoutez tout autre contexte concernant le problème ici -->
@@ -0,0 +1,56 @@
1
+ ---
2
+ name: Отчет об ошибке
3
+ about: Создайте отчет, чтобы помочь нам улучшить проект
4
+ title: "[Bug] "
5
+ labels: bug
6
+ assignees: ''
7
+ ---
8
+
9
+ <!--
10
+ Выбор языка / Language Selection:
11
+ [English](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_en.md) |
12
+ [中文](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_zh.md) |
13
+ [Français](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_fr.md) |
14
+ [Español](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_es.md) |
15
+ [العربية](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_ar.md) |
16
+ Русский
17
+ -->
18
+
19
+ ## Описание
20
+ <!-- Четкое и краткое описание ошибки -->
21
+
22
+ ## Шаги для воспроизведения
23
+ <!-- Шаги для воспроизведения проблемы -->
24
+ 1. Перейти к '...'
25
+ 2. Нажать на '....'
26
+ 3. Прокрутить до '....'
27
+ 4. Увидеть ошибку
28
+
29
+ ## Ожидаемое поведение
30
+ <!-- Четкое и краткое описание того, что вы ожидали -->
31
+
32
+ ## Фактическое поведение
33
+ <!-- Описание того, что произошло на самом деле -->
34
+
35
+ ## Скриншоты
36
+ <!-- Если применимо, добавьте скриншоты для объяснения проблемы -->
37
+
38
+ ## Окружение
39
+ <!-- Предоставьте подробную информацию о вашем окружении -->
40
+ - Версия MCP Database Utilities: [например: 0.19.0]
41
+ - ОС: [например: Windows 10, macOS 12.0, Ubuntu 22.04]
42
+ - Версия Python: [например: 3.10.5]
43
+ - Тип и версия базы данных: [например: SQLite 3.39.0, PostgreSQL 14.5, MySQL 8.0.30]
44
+ - Используемый MCP клиент: [например: Claude Desktop, VS Code, Cursor]
45
+
46
+ ## Конфигурация
47
+ <!-- Предоставьте содержимое вашего конфигурационного файла (не забудьте удалить конфиденциальную информацию, такую как пароли, API-ключи и т.д.) -->
48
+ ```yaml
49
+ connections:
50
+ example_connection:
51
+ type: sqlite
52
+ path: ":memory:"
53
+ ```
54
+
55
+ ## Дополнительная информация
56
+ <!-- Добавьте любой другой контекст о проблеме здесь -->
@@ -0,0 +1,56 @@
1
+ ---
2
+ name: Bug报告
3
+ about: 创建一个报告来帮助我们改进
4
+ title: "[Bug] "
5
+ labels: bug
6
+ assignees: ''
7
+ ---
8
+
9
+ <!--
10
+ 语言选择 / Language Selection:
11
+ [English](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_en.md) |
12
+ 中文 |
13
+ [Français](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_fr.md) |
14
+ [Español](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_es.md) |
15
+ [العربية](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_ar.md) |
16
+ [Русский](https://github.com/donghao1393/mcp-dbutils/issues/new?template=bug_report_ru.md)
17
+ -->
18
+
19
+ ## 问题描述
20
+ <!-- 请清晰简洁地描述这个bug是什么 -->
21
+
22
+ ## 复现步骤
23
+ <!-- 请提供详细的步骤来复现这个问题 -->
24
+ 1. 前往 '...'
25
+ 2. 点击 '....'
26
+ 3. 滚动到 '....'
27
+ 4. 看到错误
28
+
29
+ ## 预期行为
30
+ <!-- 请清晰简洁地描述你期望发生的事情 -->
31
+
32
+ ## 实际行为
33
+ <!-- 请描述实际发生的事情 -->
34
+
35
+ ## 截图
36
+ <!-- 如果适用,请添加截图以帮助解释你的问题 -->
37
+
38
+ ## 环境信息
39
+ <!-- 请提供关于你的环境的详细信息 -->
40
+ - MCP数据库工具版本: [例如: 0.19.0]
41
+ - 操作系统: [例如: Windows 10, macOS 12.0, Ubuntu 22.04]
42
+ - Python版本: [例如: 3.10.5]
43
+ - 数据库类型和版本: [例如: SQLite 3.39.0, PostgreSQL 14.5, MySQL 8.0.30]
44
+ - 使用的MCP客户端: [例如: Claude Desktop, VS Code, Cursor]
45
+
46
+ ## 配置文件
47
+ <!-- 请提供你的配置文件内容(记得删除敏感信息如密码、API密钥等) -->
48
+ ```yaml
49
+ connections:
50
+ example_connection:
51
+ type: sqlite
52
+ path: ":memory:"
53
+ ```
54
+
55
+ ## 附加信息
56
+ <!-- 在此处添加关于问题的任何其他上下文信息 -->
@@ -0,0 +1,8 @@
1
+ blank_issues_enabled: true
2
+ contact_links:
3
+ - name: MCP Database Utilities Discussions
4
+ url: https://github.com/donghao1393/mcp-dbutils/discussions
5
+ about: Please ask and answer questions here.
6
+ - name: MCP Database Utilities Documentation
7
+ url: https://github.com/donghao1393/mcp-dbutils/tree/main/docs
8
+ about: Check the documentation for usage information.
@@ -0,0 +1,33 @@
1
+ ---
2
+ name: تحسين الوثائق
3
+ about: اقتراح تحسينات للوثائق
4
+ title: "[Docs] "
5
+ labels: documentation
6
+ assignees: ''
7
+ ---
8
+
9
+ <!--
10
+ اختيار اللغة / Language Selection:
11
+ [English](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_en.md) |
12
+ [中文](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_zh.md) |
13
+ [Français](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_fr.md) |
14
+ [Español](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_es.md) |
15
+ العربية |
16
+ [Русский](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_ru.md)
17
+ -->
18
+
19
+ <div dir="rtl">
20
+
21
+ ## مشكلة التوثيق
22
+ <!-- يرجى وصف المشكلة في الوثائق الحالية أو ما يحتاج إلى تحسين -->
23
+
24
+ ## موقع الوثائق
25
+ <!-- يرجى تقديم موقع الوثائق (URL، مسار الملف، إلخ) -->
26
+
27
+ ## التحسين المقترح
28
+ <!-- يرجى وصف التحسين المقترح -->
29
+
30
+ ## معلومات إضافية
31
+ <!-- أضف أي معلومات أخرى ذات صلة هنا -->
32
+
33
+ </div>
@@ -0,0 +1,29 @@
1
+ ---
2
+ name: Documentation Improvement
3
+ about: Suggest improvements to the documentation
4
+ title: "[Docs] "
5
+ labels: documentation
6
+ assignees: ''
7
+ ---
8
+
9
+ <!--
10
+ Language Selection / 语言选择:
11
+ English |
12
+ [中文](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_zh.md) |
13
+ [Français](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_fr.md) |
14
+ [Español](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_es.md) |
15
+ [العربية](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_ar.md) |
16
+ [Русский](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_ru.md)
17
+ -->
18
+
19
+ ## Documentation Issue
20
+ <!-- Please describe the issue with the current documentation or what needs improvement -->
21
+
22
+ ## Documentation Location
23
+ <!-- Please provide the location of the documentation (URL, file path, etc.) -->
24
+
25
+ ## Suggested Improvement
26
+ <!-- Please describe your suggested improvement -->
27
+
28
+ ## Additional Information
29
+ <!-- Add any other relevant information here -->
@@ -0,0 +1,29 @@
1
+ ---
2
+ name: Mejora de Documentación
3
+ about: Sugerir mejoras a la documentación
4
+ title: "[Docs] "
5
+ labels: documentation
6
+ assignees: ''
7
+ ---
8
+
9
+ <!--
10
+ Selección de idioma / Language Selection:
11
+ [English](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_en.md) |
12
+ [中文](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_zh.md) |
13
+ [Français](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_fr.md) |
14
+ Español |
15
+ [العربية](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_ar.md) |
16
+ [Русский](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_ru.md)
17
+ -->
18
+
19
+ ## Problema de Documentación
20
+ <!-- Por favor, describa el problema con la documentación actual o lo que necesita mejora -->
21
+
22
+ ## Ubicación de la Documentación
23
+ <!-- Por favor, proporcione la ubicación de la documentación (URL, ruta del archivo, etc.) -->
24
+
25
+ ## Mejora Sugerida
26
+ <!-- Por favor, describa su sugerencia de mejora -->
27
+
28
+ ## Información Adicional
29
+ <!-- Agregue cualquier otra información relevante aquí -->
@@ -0,0 +1,29 @@
1
+ ---
2
+ name: Amélioration de la Documentation
3
+ about: Suggérer des améliorations à la documentation
4
+ title: "[Docs] "
5
+ labels: documentation
6
+ assignees: ''
7
+ ---
8
+
9
+ <!--
10
+ Sélection de langue / Language Selection:
11
+ [English](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_en.md) |
12
+ [中文](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_zh.md) |
13
+ Français |
14
+ [Español](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_es.md) |
15
+ [العربية](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_ar.md) |
16
+ [Русский](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_ru.md)
17
+ -->
18
+
19
+ ## Problème de Documentation
20
+ <!-- Veuillez décrire le problème avec la documentation actuelle ou ce qui nécessite une amélioration -->
21
+
22
+ ## Emplacement de la Documentation
23
+ <!-- Veuillez fournir l'emplacement de la documentation (URL, chemin du fichier, etc.) -->
24
+
25
+ ## Amélioration Suggérée
26
+ <!-- Veuillez décrire votre suggestion d'amélioration -->
27
+
28
+ ## Informations Supplémentaires
29
+ <!-- Ajoutez toute autre information pertinente ici -->
@@ -0,0 +1,29 @@
1
+ ---
2
+ name: Улучшение документации
3
+ about: Предложить улучшения документации
4
+ title: "[Docs] "
5
+ labels: documentation
6
+ assignees: ''
7
+ ---
8
+
9
+ <!--
10
+ Выбор языка / Language Selection:
11
+ [English](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_en.md) |
12
+ [中文](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_zh.md) |
13
+ [Français](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_fr.md) |
14
+ [Español](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_es.md) |
15
+ [العربية](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_ar.md) |
16
+ Русский
17
+ -->
18
+
19
+ ## Проблема с документацией
20
+ <!-- Пожалуйста, опишите проблему с текущей документацией или что нуждается в улучшении -->
21
+
22
+ ## Расположение документации
23
+ <!-- Пожалуйста, укажите расположение документации (URL, путь к файлу и т.д.) -->
24
+
25
+ ## Предлагаемое улучшение
26
+ <!-- Пожалуйста, опишите ваше предложение по улучшению -->
27
+
28
+ ## Дополнительная информация
29
+ <!-- Добавьте любую другую соответствующую информацию здесь -->
@@ -0,0 +1,29 @@
1
+ ---
2
+ name: 文档改进
3
+ about: 提出文档改进建议
4
+ title: "[Docs] "
5
+ labels: documentation
6
+ assignees: ''
7
+ ---
8
+
9
+ <!--
10
+ 语言选择 / Language Selection:
11
+ [English](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_en.md) |
12
+ 中文 |
13
+ [Français](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_fr.md) |
14
+ [Español](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_es.md) |
15
+ [العربية](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_ar.md) |
16
+ [Русский](https://github.com/donghao1393/mcp-dbutils/issues/new?template=documentation_improvement_ru.md)
17
+ -->
18
+
19
+ ## 文档问题
20
+ <!-- 请描述当前文档中的问题或需要改进的地方 -->
21
+
22
+ ## 文档位置
23
+ <!-- 请提供需要改进的文档的位置(URL、文件路径等) -->
24
+
25
+ ## 建议的改进
26
+ <!-- 请描述你建议的改进方式 -->
27
+
28
+ ## 附加信息
29
+ <!-- 在此处添加任何其他相关信息 -->
@@ -0,0 +1,36 @@
1
+ ---
2
+ name: طلب ميزة
3
+ about: اقتراح فكرة لهذا المشروع
4
+ title: "[Feature] "
5
+ labels: enhancement
6
+ assignees: ''
7
+ ---
8
+
9
+ <!--
10
+ اختيار اللغة / Language Selection:
11
+ [English](https://github.com/donghao1393/mcp-dbutils/issues/new?template=feature_request_en.md) |
12
+ [中文](https://github.com/donghao1393/mcp-dbutils/issues/new?template=feature_request_zh.md) |
13
+ [Français](https://github.com/donghao1393/mcp-dbutils/issues/new?template=feature_request_fr.md) |
14
+ [Español](https://github.com/donghao1393/mcp-dbutils/issues/new?template=feature_request_es.md) |
15
+ العربية |
16
+ [Русский](https://github.com/donghao1393/mcp-dbutils/issues/new?template=feature_request_ru.md)
17
+ -->
18
+
19
+ <div dir="rtl">
20
+
21
+ ## بيان المشكلة
22
+ <!-- وصف واضح وموجز للمشكلة -->
23
+
24
+ ## الحل المقترح
25
+ <!-- وصف واضح وموجز لما تريد أن يحدث -->
26
+
27
+ ## البدائل المدروسة
28
+ <!-- وصف واضح وموجز لأي حلول أو ميزات بديلة فكرت فيها -->
29
+
30
+ ## حالة الاستخدام
31
+ <!-- صف كيف سيتم استخدام هذه الميزة وكيف ستحسن تجربة المستخدم أو تحل مشكلة موجودة -->
32
+
33
+ ## معلومات إضافية
34
+ <!-- أضف أي سياق آخر أو لقطات شاشة حول طلب الميزة هنا -->
35
+
36
+ </div>
@@ -0,0 +1,32 @@
1
+ ---
2
+ name: Feature Request
3
+ about: Suggest an idea for this project
4
+ title: "[Feature] "
5
+ labels: enhancement
6
+ assignees: ''
7
+ ---
8
+
9
+ <!--
10
+ Language Selection / 语言选择:
11
+ English |
12
+ [中文](https://github.com/donghao1393/mcp-dbutils/issues/new?template=feature_request_zh.md) |
13
+ [Français](https://github.com/donghao1393/mcp-dbutils/issues/new?template=feature_request_fr.md) |
14
+ [Español](https://github.com/donghao1393/mcp-dbutils/issues/new?template=feature_request_es.md) |
15
+ [العربية](https://github.com/donghao1393/mcp-dbutils/issues/new?template=feature_request_ar.md) |
16
+ [Русский](https://github.com/donghao1393/mcp-dbutils/issues/new?template=feature_request_ru.md)
17
+ -->
18
+
19
+ ## Problem Statement
20
+ <!-- A clear and concise description of what the problem is -->
21
+
22
+ ## Proposed Solution
23
+ <!-- A clear and concise description of what you want to happen -->
24
+
25
+ ## Alternatives Considered
26
+ <!-- A clear and concise description of any alternative solutions or features you've considered -->
27
+
28
+ ## Use Case
29
+ <!-- Describe how this feature would be used and how it would improve user experience or solve an existing problem -->
30
+
31
+ ## Additional Information
32
+ <!-- Add any other context or screenshots about the feature request here -->
@@ -0,0 +1,32 @@
1
+ ---
2
+ name: Solicitud de Función
3
+ about: Sugerir una idea para este proyecto
4
+ title: "[Feature] "
5
+ labels: enhancement
6
+ assignees: ''
7
+ ---
8
+
9
+ <!--
10
+ Selección de idioma / Language Selection:
11
+ [English](https://github.com/donghao1393/mcp-dbutils/issues/new?template=feature_request_en.md) |
12
+ [中文](https://github.com/donghao1393/mcp-dbutils/issues/new?template=feature_request_zh.md) |
13
+ [Français](https://github.com/donghao1393/mcp-dbutils/issues/new?template=feature_request_fr.md) |
14
+ Español |
15
+ [العربية](https://github.com/donghao1393/mcp-dbutils/issues/new?template=feature_request_ar.md) |
16
+ [Русский](https://github.com/donghao1393/mcp-dbutils/issues/new?template=feature_request_ru.md)
17
+ -->
18
+
19
+ ## Declaración del problema
20
+ <!-- Una descripción clara y concisa del problema -->
21
+
22
+ ## Solución propuesta
23
+ <!-- Una descripción clara y concisa de lo que quieres que suceda -->
24
+
25
+ ## Alternativas consideradas
26
+ <!-- Una descripción clara y concisa de cualquier solución o característica alternativa que hayas considerado -->
27
+
28
+ ## Caso de uso
29
+ <!-- Describe cómo se utilizaría esta función y cómo mejoraría la experiencia del usuario o resolvería un problema existente -->
30
+
31
+ ## Información adicional
32
+ <!-- Agrega cualquier otro contexto o capturas de pantalla sobre la solicitud de función aquí -->