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: docs-site/docs/troubleshooting.md
+33Lines changed: 33 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,39 @@ dbeaver-mcp-server
58
58
- Restart DBeaver after making configuration changes
59
59
60
60
### Connection Authentication
61
+
62
+
#### Password Authentication Issues
63
+
If you're experiencing authentication failures even though connections work in DBeaver, this is now fixed in version 1.1.8+. The server properly loads and decrypts credentials from DBeaver's credential store.
64
+
65
+
**How it works:**
66
+
- DBeaver stores passwords encrypted in `credentials-config.json`
67
+
- The MCP server automatically decrypts and uses these credentials
68
+
- Passwords are loaded from: `~/.local/share/DBeaverData/workspace6/General/.dbeaver/credentials-config.json` (Linux) or equivalent path on other platforms
69
+
70
+
**Troubleshooting:**
71
+
1. Ensure your connections are saved with passwords in DBeaver
72
+
2. Test connections in DBeaver GUI first to verify they work
73
+
3. The MCP server will automatically detect and use stored credentials
74
+
4. Enable debug mode to see credential loading logs:
75
+
```bash
76
+
DBEAVER_DEBUG=true dbeaver-mcp-server
77
+
```
78
+
79
+
**Common Issues:**
80
+
-**Empty password field**: Make sure you saved the password in DBeaver (check "Save password" when creating connection)
81
+
-**SSL/TLS requirements**: The server now properly handles SSL settings from DBeaver
82
+
-**Connection properties**: All connection properties including host, port, database name are loaded from DBeaver
Copy file name to clipboardExpand all lines: package.json
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "dbeaver-mcp-server",
3
-
"version": "1.1.7",
3
+
"version": "1.2.3",
4
4
"description": "Production-ready Model Context Protocol server for universal database access through DBeaver connections - supports 200+ database types",
0 commit comments