File tree 3 files changed +8
-9
lines changed
cratedb_toolkit/query/mcp
3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ class McpServerRegistry:
19
19
"CRATEDB_MCP_HTTP_URL" : "http://localhost:4200" ,
20
20
"CRATEDB_MCP_TRANSPORT" : "stdio" ,
21
21
},
22
- requirements = ["cratedb-mcp @ git+https://github.com/crate/cratedb-mcp@packaging-adjustments " ],
22
+ requirements = ["cratedb-mcp" ],
23
23
homepage = "https://github.com/crate/cratedb-mcp" ,
24
24
description = """
25
25
The CrateDB MCP server specialises on advanced CrateDB SQL operations by blending in
@@ -30,10 +30,9 @@ class McpServerRegistry:
30
30
example = r"""
31
31
export CRATEDB_MCP_HTTP_URL=http://localhost:4200
32
32
mcpt call query_sql --params '{"query":"SELECT * FROM sys.summits LIMIT 3"}' \
33
- uvx ' cratedb-mcp @ git+https://github.com/crate/cratedb-mcp@packaging-adjustments' \
33
+ uvx cratedb-mcp serve \
34
34
| jq
35
35
""" ,
36
- issues = ["https://github.com/crate/cratedb-mcp/pull/3" ],
37
36
)
38
37
39
38
dbhub = McpServer (
Original file line number Diff line number Diff line change @@ -9,15 +9,15 @@ The CrateDB MCP server specialises on advanced CrateDB SQL operations by blendin
9
9
knowledge base resources from CrateDB's documentation about query optimizations.
10
10
It is written in Python, optionally to be invoked with ` uv ` or ` uvx ` .
11
11
12
- :Homepage: < https://github .com/crate/ cratedb-mcp >
12
+ :Homepage: < https://cratedb .com/docs/guide/integrate/mcp/ cratedb-mcp.html >
13
13
: Validated with CrateDB: True
14
- :Install: ` uv pip install ' cratedb-mcp @ git+https://github.com/crate/cratedb-mcp@packaging-adjustments' `
15
- :Run: ` cratedb-mcp `
14
+ :Install: ` uv pip install cratedb-mcp `
15
+ :Run: ` cratedb-mcp serve `
16
16
:Example:
17
17
``` shell
18
18
export CRATEDB_MCP_HTTP_URL=http://localhost:4200
19
19
mcpt call query_sql --params ' {"query":"SELECT * FROM sys.summits LIMIT 3"}' \
20
- uvx ' cratedb-mcp @ git+https://github.com/crate/cratedb-mcp@packaging-adjustments ' \
20
+ uvx cratedb-mcp serve \
21
21
| jq
22
22
```
23
23
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ Using [cratedb-mcp].
41
41
``` shell
42
42
export CRATEDB_MCP_HTTP_URL=http://localhost:4200
43
43
mcpt call query_sql --params ' {"query":"SELECT * FROM sys.summits LIMIT 3"}' \
44
- uvx ' cratedb-mcp @ git+https://github.com/crate/cratedb-mcp@packaging-adjustments ' \
44
+ uvx cratedb-mcp serve \
45
45
| jq
46
46
```
47
47
Using [ mcp-alchemy] .
@@ -112,7 +112,7 @@ ctk query mcp --server-name=postgres-basic launch
112
112
113
113
114
114
[ CrateDB ] : https://cratedb.com/database
115
- [ cratedb-mcp ] : https://github .com/crate/ cratedb-mcp
115
+ [ cratedb-mcp ] : https://cratedb .com/docs/guide/integrate/mcp/ cratedb-mcp.html
116
116
[ CrateDB Cloud ] : https://cratedb.com/docs/cloud/
117
117
[ CrateDB Toolkit ] : https://cratedb-toolkit.readthedocs.io/
118
118
[ Docker ] : https://www.docker.com/
You can’t perform that action at this time.
0 commit comments