Skip to content

Commit 42faae2

Browse files
committed
actualize helm chart examples_values and improve logging
Signed-off-by: Slach <bloodjazman@gmail.com>
1 parent 8300c1c commit 42faae2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

helm/altinity-mcp/values_examples/mcp-github-jwe.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Example values for altinity-mcp with JWE authentication enabled
22
# This configuration is equivalent to running with:
3-
# --allow-jwe-auth --jwe-encryption-key=test-encryption-key --transport=http --port=8080 --log-level=debug --read-only
3+
# --allow-jwe-auth --jwe-secret-key=test-encryption-key --jwt-secret-key=test-signing-key --transport=http --port=8080 --log-level=debug --openapi --read-only
44

55
image:
66
tag: "main"
@@ -9,7 +9,7 @@ image:
99
service:
1010
annotations:
1111
edge-proxy.altinity.com/port-mapping: 443:tls-to-tcp:8080
12-
edge-proxy.altinity.com/tls-server-name: mcp-github-jwt.altinity-skaeser-playground.dev.altinity.cloud
12+
edge-proxy.altinity.com/tls-server-name: mcp-github-jwe.altinity-skaeser-playground.dev.altinity.cloud
1313

1414
config:
1515
reload_time: 120
@@ -20,7 +20,7 @@ config:
2020
openapi:
2121
enabled: true
2222
tls: true
23-
transport: "sse"
23+
transport: "http"
2424
jwe:
2525
enabled: true
2626
jwe_secret_key: "test-encryption-key"

pkg/server/server.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ func NewClickHouseMCPServer(cfg config.Config) *ClickHouseJWEServer {
5757

5858
log.Info().
5959
Bool("jwe_enabled", cfg.Server.JWE.Enabled).
60+
Bool("read_only", cfg.ClickHouse.ReadOnly).
6061
Int("default_limit", cfg.ClickHouse.Limit).
6162
Msg("ClickHouse MCP server initialized with tools, resources, and prompts")
6263

0 commit comments

Comments
 (0)