ormcp-server 0.6.1__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 (73) hide show
  1. ormcp_server-0.6.1/.gitignore +215 -0
  2. ormcp_server-0.6.1/Gilhari_SDK/Gilhari_README.pdf +0 -0
  3. ormcp_server-0.6.1/Gilhari_SDK/LICENSE.txt +2290 -0
  4. ormcp_server-0.6.1/Gilhari_SDK/config/JDXDDL.config +63 -0
  5. ormcp_server-0.6.1/Gilhari_SDK/config/JDXIcon.ico +0 -0
  6. ormcp_server-0.6.1/Gilhari_SDK/config/JDXStudioSettings.save +7 -0
  7. ormcp_server-0.6.1/Gilhari_SDK/config/java2.security.policy +3 -0
  8. ormcp_server-0.6.1/Gilhari_SDK/config/jdx.lic +4 -0
  9. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata.jdx +22 -0
  10. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_Access.jdx +17 -0
  11. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_daffo.jdx +22 -0
  12. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_db2.jdx +17 -0
  13. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_harmonia.jdx +17 -0
  14. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_hsqldb.jdx +17 -0
  15. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_ibase.jdx +17 -0
  16. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_ifmx.jdx +17 -0
  17. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_ingres.jdx +17 -0
  18. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_jbms.jdx +17 -0
  19. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_jds.jdx +17 -0
  20. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_mysql.jdx +17 -0
  21. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_ora.jdx +17 -0
  22. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_pbase.jdx +17 -0
  23. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_postgres.jdx +17 -0
  24. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_saphana.jdx +29 -0
  25. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_syb.jdx +20 -0
  26. ormcp_server-0.6.1/Gilhari_SDK/config/jdxMetadata_usr.jdx +1 -0
  27. ormcp_server-0.6.1/Gilhari_SDK/config/jdxORM.template +3 -0
  28. ormcp_server-0.6.1/Gilhari_SDK/docs/Gilhari_APIs.pdf +0 -0
  29. ormcp_server-0.6.1/Gilhari_SDK/docs/Gilhari_REST_API.postman_collection.json +1432 -0
  30. ormcp_server-0.6.1/Gilhari_SDK/docs/JDX_DATABASE_JDBC_DRIVER_Specification_Guide.html +123 -0
  31. ormcp_server-0.6.1/Gilhari_SDK/docs/JDX_DATABASE_JDBC_DRIVER_Specification_Guide.md +171 -0
  32. ormcp_server-0.6.1/Gilhari_SDK/docs/ReleaseNotes.txt +217 -0
  33. ormcp_server-0.6.1/Gilhari_SDK/docs/operationDetailsDoc.pdf +0 -0
  34. ormcp_server-0.6.1/Gilhari_SDK/external_libs/JSONLicense.txt +13 -0
  35. ormcp_server-0.6.1/Gilhari_SDK/external_libs/json-20240303.jar +0 -0
  36. ormcp_server-0.6.1/Gilhari_SDK/libs/jdxtools.jar +0 -0
  37. ormcp_server-0.6.1/Gilhari_SDK/libs/jxclasses.jar +0 -0
  38. ormcp_server-0.6.1/LICENSE +107 -0
  39. ormcp_server-0.6.1/PKG-INFO +314 -0
  40. ormcp_server-0.6.1/README.md +177 -0
  41. ormcp_server-0.6.1/gilhari_example1/.gitattributes +6 -0
  42. ormcp_server-0.6.1/gilhari_example1/.gitignore +40 -0
  43. ormcp_server-0.6.1/gilhari_example1/Dockerfile +15 -0
  44. ormcp_server-0.6.1/gilhari_example1/JDX_DATABASE_JDBC_DRIVER_Specification_Guide.html +123 -0
  45. ormcp_server-0.6.1/gilhari_example1/JDX_DATABASE_JDBC_DRIVER_Specification_Guide.md +171 -0
  46. ormcp_server-0.6.1/gilhari_example1/LICENSE +39 -0
  47. ormcp_server-0.6.1/gilhari_example1/README.md +456 -0
  48. ormcp_server-0.6.1/gilhari_example1/bin/com/softwaretree/gilhariexample1/model/User.class +0 -0
  49. ormcp_server-0.6.1/gilhari_example1/build.cmd +2 -0
  50. ormcp_server-0.6.1/gilhari_example1/build.sh +6 -0
  51. ormcp_server-0.6.1/gilhari_example1/compile.cmd +11 -0
  52. ormcp_server-0.6.1/gilhari_example1/compile.sh +13 -0
  53. ormcp_server-0.6.1/gilhari_example1/config/classnames_map_example.json +1 -0
  54. ormcp_server-0.6.1/gilhari_example1/config/gilhari_example1.db +0 -0
  55. ormcp_server-0.6.1/gilhari_example1/config/gilhari_example1.jdx +35 -0
  56. ormcp_server-0.6.1/gilhari_example1/curl.log +42 -0
  57. ormcp_server-0.6.1/gilhari_example1/curlCommands.cmd +101 -0
  58. ormcp_server-0.6.1/gilhari_example1/curlCommands.sh +105 -0
  59. ormcp_server-0.6.1/gilhari_example1/curlCommandsPopulate.cmd +98 -0
  60. ormcp_server-0.6.1/gilhari_example1/curlCommandsPopulate.sh +96 -0
  61. ormcp_server-0.6.1/gilhari_example1/gilhari_service.config +9 -0
  62. ormcp_server-0.6.1/gilhari_example1/operationDetails_doc.md +151 -0
  63. ormcp_server-0.6.1/gilhari_example1/run_docker_app.cmd +1 -0
  64. ormcp_server-0.6.1/gilhari_example1/run_docker_app.sh +5 -0
  65. ormcp_server-0.6.1/gilhari_example1/sources.txt +1 -0
  66. ormcp_server-0.6.1/gilhari_example1/src/com/softwaretree/gilhariexample1/model/User.java +25 -0
  67. ormcp_server-0.6.1/hatch_build.py +60 -0
  68. ormcp_server-0.6.1/package/client/ormcp_client_example.py +656 -0
  69. ormcp_server-0.6.1/pyproject.toml +107 -0
  70. ormcp_server-0.6.1/src/__init__.py +5 -0
  71. ormcp_server-0.6.1/src/main.py +63 -0
  72. ormcp_server-0.6.1/src/microservice_ensure.py +337 -0
  73. ormcp_server-0.6.1/src/ormcp_server.py +971 -0
@@ -0,0 +1,215 @@
1
+ # ---------------------------
2
+ # Python general
3
+ # ---------------------------
4
+ __pycache__/
5
+ *.py[cod]
6
+ *.so
7
+ *.egg
8
+ *.egg-info/
9
+ *.pyo
10
+ *.pyd
11
+
12
+ # Bytecode & compiled files
13
+ *.pyc
14
+ *.pyo
15
+
16
+ # ---------------------------
17
+ # virtualenv
18
+ # ---------------------------
19
+ .venv/
20
+ venv/
21
+ env/
22
+
23
+ # ---------------------------
24
+ # Build artifacts
25
+ # ---------------------------
26
+ build/
27
+ dist/
28
+ *.whl
29
+ *.tar.gz
30
+
31
+ # ---------------------------
32
+ # Test output
33
+ # ---------------------------
34
+ htmlcov/
35
+ .coverage
36
+ .coverage.*
37
+ .cache/
38
+ nosetests.xml
39
+ coverage.xml
40
+ *.cover
41
+ *.pytest_cache/
42
+
43
+ # ---------------------------
44
+ # Test files
45
+ # ---------------------------
46
+ tests/minimal_client.py
47
+ tests/minimal_server.py
48
+ tests/test_ormcp_server_old.py
49
+ tests/test_ormcp_server_v1.py
50
+ tests/mcp_session_diagnostic.py
51
+ tests/__pycache__/
52
+ tests/*.lnk
53
+
54
+ # ---------------------------
55
+ # Sphinx docs
56
+ # ---------------------------
57
+ docs/_build/
58
+ docs/_static/
59
+ docs/api/
60
+ *.doctree
61
+
62
+ # ---------------------------
63
+ # Environment/config
64
+ # ---------------------------
65
+ .env
66
+ .env.*
67
+ *.env
68
+
69
+ # ---------------------------
70
+ # Editors/IDEs
71
+ # ---------------------------
72
+ .vscode/
73
+ .idea/
74
+ *.swp
75
+ *.swo
76
+ *.bak
77
+
78
+ # ---------------------------
79
+ # System files
80
+ # ---------------------------
81
+ .DS_Store
82
+ Thumbs.db
83
+ *.lnk
84
+
85
+ # ---------------------------
86
+ # Docker
87
+ # ---------------------------
88
+ *.tar
89
+ *.img
90
+ *.container
91
+ build.bat
92
+
93
+ # ---------------------------
94
+ # Media/image files
95
+ # ---------------------------
96
+ *.png
97
+ *.jpg
98
+
99
+ # ---------------------------
100
+ # Binary files
101
+ # ---------------------------
102
+ *.class
103
+
104
+ # ---------------------------
105
+ # SDK and Examples (included in sdist, excluded from git)
106
+ # ---------------------------
107
+ /Gilhari_SDK/
108
+ /gilhari_example1/
109
+
110
+ # ---------------------------
111
+ # Miscellaneous / Experimental
112
+ # ---------------------------
113
+ /miscellaneous/
114
+ experimental_src/*.py
115
+
116
+ # Old/test client files
117
+ client/ormcp_client_example1.py
118
+ client/ormcp_client_example2.py
119
+ client/ormcp_client_example3.py
120
+ client/ormcp_client_example4.py
121
+ client/fastmcp_http_client.py
122
+ client/test_gmcp_http_concurrent_clients_fixed.py
123
+ client/test_gmcp_http_concurrent_clients_fixed2.py
124
+ client/gmcp_client_http_example.html
125
+ client/gmcp_client_http_example2.html
126
+ client/fixed_mcp_client_for_FastMCP.py
127
+ client/fixed_mcp_client_for_FastMCP2.py
128
+ client/fixed_mcp_client_for_FastMCP3.py
129
+ client/ormcp_client_example_old.py
130
+
131
+ # ---------------------------
132
+ # Old test files
133
+ # ---------------------------
134
+
135
+ # ---------------------------
136
+ # Temporary/log files
137
+ # ---------------------------
138
+ Notes.txt
139
+ gilhari_example1/curl.log
140
+ *.log
141
+
142
+ # ---------------------------
143
+ # Shortcuts and HTML previews
144
+ # ---------------------------
145
+ ormcp_server_project - Shortcut.lnk
146
+ README_mini.html
147
+
148
+ # ---------------------------
149
+ # Commented out (can be enabled if needed)
150
+ # ---------------------------
151
+ #Using_Make_Bat_File.txt
152
+ #Using_Makefile.txt
153
+ #Make.bat
154
+ #Makefile
155
+ #PublishingOnPyPI.txt
156
+ #client/ExamplesToolCalls.txt
157
+ package/ormcp_tools_reference.md
158
+ package/client/using_ormcp_client_example.md
159
+ package/docs/Interacting_With_ORMCP_Server_In_STDIO_Mode.md
160
+ package/docs/mcp_protocol_reference.md
161
+ package/docs/Interacting_With_ORMCP_Server_In_HTTP_Mode.md
162
+
163
+ # ---------------------------
164
+ # Build and distribution tools
165
+ # ---------------------------
166
+ Make.bat
167
+ Makefile
168
+ Using_Make_Bat_File.txt
169
+ Using_Makefile.txt
170
+ build_distribution.bat
171
+ requirements.txt
172
+ uv.lock
173
+
174
+ # ---------------------------
175
+ # Local dev helpers
176
+ # ---------------------------
177
+ launch_MCP_Inspector.bat
178
+ launch_ORMCP_http_client.txt
179
+ launch_ORMCP_http_mode.txt
180
+ NotesOnPythonPackageBuilding.txt
181
+
182
+ # ---------------------------
183
+ # Sphinx documentation (not ready)
184
+ # ---------------------------
185
+ docs/
186
+ *.doctree
187
+ *.buildinfo
188
+
189
+ # ---------------------------
190
+ # Experimental / in-progress package docs
191
+ # ---------------------------
192
+ package/client/NotesOnHttpModeSupport.txt
193
+ package/client/simple_gmcp_http_client.py
194
+ package/client/test_gmcp_http_concurrent_clients.py
195
+ package/docs/CommandLineStatementsForORMCP_Serever_Stdio_Console.txt
196
+ package/docs/ExamplesToolCalls.txt
197
+ package/docs/Interacting_Using_Browser_With_ORMCP_Server_In_HTTP_Mode.md
198
+ package/docs/Interacting_With_ORMCP_Server_In_STDIO_Mode_ComprehensiveGuide.md
199
+ package/docs/gendoc.bat
200
+ package/docs/make.bat
201
+
202
+ # ---------------------------
203
+ # One-time fix scripts
204
+ # ---------------------------
205
+ fix_compile_duplicate.ps1
206
+ fix_compile_scripts.ps1
207
+ fix_sh_executable.ps1
208
+
209
+ # ---------------------------
210
+ # Miscellaneous
211
+ # ---------------------------
212
+ MCPServer_Setup_Python.docx
213
+ ORMCP_Package_LICENSE
214
+ hatch_build_old.py
215
+ glama_docker/