You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+28-10Lines changed: 28 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,23 @@
1
1
# Hologres MCP Server
2
+
2
3
Hologres MCP Server serves as a universal interface between AI Agents and Hologres databases. It enables seamless communication between AI Agents and Hologres, helping AI Agents retrieve Hologres database metadata and execute SQL operations.
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+34-2Lines changed: 34 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,39 @@
1
1
# Release Notes
2
+
3
+
## Version 0.1.7
4
+
5
+
### Bugfix
6
+
7
+
Fix some bugs when using in Python 3.11.
8
+
9
+
## Version 0.1.6
10
+
11
+
### Enhancement
12
+
13
+
update psycopg2 to psycopg3.
14
+
15
+
select, dml, ddl use different tools to execute.
16
+
17
+
## Version 0.1.5
18
+
19
+
### Enhancement
20
+
21
+
Now compatible with Python 3.10 and newer (previously required 3.13+).
22
+
2
23
## Version 0.1.4
24
+
3
25
### Enhancement
4
-
The URI of the resource template has been refactored to enable the large language model (LLM) to use it more concisely.
5
26
27
+
The URI of the resource template has been refactored to enable the large language model (LLM) to use it more concisely.
6
28
7
29
## Version 0.1.2 (Initial Release)
30
+
8
31
### Description
32
+
9
33
Hologres MCP Server serves as a universal interface between AI Agents and Hologres databases. It enables rapid implementation of seamless communication between AI Agents and Hologres, helping AI Agents retrieve Hologres database metadata and execute SQL for various operations.
10
34
11
35
### Key Features
36
+
12
37
-**SQL Execution**
13
38
- Execute SQL in Hologres, including DDL, DML, and Queries
14
39
- Execute ANALYZE commands to collect statistics
@@ -22,27 +47,34 @@ Hologres MCP Server serves as a universal interface between AI Agents and Hologr
22
47
- Query missing statistics
23
48
24
49
### Dependencies
25
-
- Python 3.13 or higher
50
+
51
+
- Python 3.10 or higher
26
52
- Required packages
27
53
- mcp >= 1.4.0
28
54
- psycopg2 >= 2.9.5
29
55
30
56
### Configuration
57
+
31
58
MCP Server requires the following environment variables to connect to Hologres instance:
59
+
32
60
-`HOLOGRES_HOST`
33
61
-`HOLOGRES_PORT`
34
62
-`HOLOGRES_USER`
35
63
-`HOLOGRES_PASSWORD`
36
64
-`HOLOGRES_DATABASE`
37
65
38
66
### Installation
67
+
39
68
Install MCP Server using the following package:
69
+
40
70
```bash
41
71
pip install hologres-mcp-server
42
72
```
43
73
44
74
### MCP Integration
75
+
45
76
Add the following configuration to the MCP client configuration file:
0 commit comments