Skip to content

Commit 448461d

Browse files
committed
README adapted
1 parent 50fa0a4 commit 448461d

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ AI Desktop tool of your choice. This MCP server will use the same version number
9696
supported Exasol MCP-Server. Equal version numbers indicate the same functionality, plus the
9797
Text-to-SQL option.
9898

99-
## Using the server with the Claude Desktop.
99+
## Using the server with the Claude Desktop (and probably others).
100100

101101
To enable the Claude Desktop using the Exasol MCP server, the latter must be listed
102102
in the configuration file `claude_desktop_config.json`.
@@ -126,7 +126,11 @@ example.
126126
```
127127

128128
With these settings, uv will install and run the "exasol-mcp-package" in an
129-
ephemeral environment, using the default `uv` parameters and default server settings.
129+
ephemeral environment, using the default `uv` parameters and default server settings.
130+
131+
Other AI Desktop applications may use the same syntax to configure MCP servers.
132+
Consult the documentation of the respective AI Desktop application for detailed
133+
information about configuring the MCP server.
130134

131135
## Configuration settings
132136

exasol/ai/mcp/server/text_to_sql.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
########################
1010

1111
import chromadb
12-
from chromadb.config import Settings
1312
from cryptography.fernet import Fernet
1413
from datetime import datetime
1514
from dotenv import load_dotenv

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
name = "exasol-mcp-server"
33
version = "0.1.0"
44
requires-python = ">=3.10,<4.0"
5-
description = "Exasol MCP Server"
5+
description = "Exasol MCP Server with Text-to-SQL option"
66
authors = [
7-
{name = "Mikhail Beck", email = "mikhail.beck@exasol.com"},
7+
{name = "Dirk Beerbohm", email = "dirk.beerbohm@exasol.com"},
88
]
99
readme = "README.md"
1010
license = "MIT"
11-
keywords = ['exasol', 'MCP server']
11+
keywords = ['exasol', 'MCP server', 'Text to SQL']
1212
dynamic = ["dependencies"]
1313

1414
[project.scripts]
@@ -21,8 +21,8 @@ packages = [
2121
]
2222

2323
[poetry.urls]
24-
repository = "https://github.com/exasol/mcp-server"
25-
homepage = "https://github.com/exasol/mcp-server"
24+
repository = "https://github.com/exasol/exasol-labs-text2sql-mcp-server"
25+
homepage = "https://github.com/exasol/exasol-labs-text2sql-mcp-server/"
2626

2727
[tool.poetry.dependencies]
2828
fastmcp = "^2.10.4"
@@ -84,7 +84,7 @@ module = [
8484
ignore_errors = true
8585

8686
[tool.sonar]
87-
projectKey = "exasol.com:mcp-server"
87+
projectKey = "exasol.com:mcp-server-text-to-sql"
8888
hostUrl = "https://sonarcloud.io"
8989
organization = "exasol"
9090
exclusions = "exasol/ai/mcp/server/version.py"

0 commit comments

Comments
 (0)