Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e647c87dd8 | |||
| cb74157d51 | |||
| 202058bdc8 | |||
| c312911538 | |||
| e602684743 | |||
| 8221046d8a | |||
| 3e45b6ca25 |
@@ -1,3 +1,22 @@
|
|||||||
|
## v0.22.5 (2025-10-29)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- Update helm chart variables
|
||||||
|
|
||||||
|
## v0.22.4 (2025-10-29)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- **helm**: Update helm version with release
|
||||||
|
- **helm**: Update helm version with release
|
||||||
|
|
||||||
|
## v0.22.3 (2025-10-29)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- **helm**: Update helm version with release
|
||||||
|
|
||||||
## v0.22.2 (2025-10-29)
|
## v0.22.2 (2025-10-29)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ apiVersion: v2
|
|||||||
name: nextcloud-mcp-server
|
name: nextcloud-mcp-server
|
||||||
description: A Helm chart for Nextcloud MCP Server - enables AI assistants to interact with Nextcloud
|
description: A Helm chart for Nextcloud MCP Server - enables AI assistants to interact with Nextcloud
|
||||||
type: application
|
type: application
|
||||||
version: 0.1.1
|
version: 0.22.5
|
||||||
appVersion: "0.21.0"
|
appVersion: "0.22.5"
|
||||||
keywords:
|
keywords:
|
||||||
- nextcloud
|
- nextcloud
|
||||||
- mcp
|
- mcp
|
||||||
|
|||||||
@@ -95,15 +95,11 @@ Create the name of the PVC to use for OAuth storage
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
{{/*
|
{{/*
|
||||||
Return the appropriate MCP server port based on auth mode
|
Return the MCP server port
|
||||||
*/}}
|
*/}}
|
||||||
{{- define "nextcloud-mcp-server.port" -}}
|
{{- define "nextcloud-mcp-server.port" -}}
|
||||||
{{- if eq .Values.auth.mode "oauth" }}
|
|
||||||
{{- .Values.auth.oauth.port }}
|
|
||||||
{{- else }}
|
|
||||||
{{- .Values.mcp.port }}
|
{{- .Values.mcp.port }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
|
||||||
|
|
||||||
{{/*
|
{{/*
|
||||||
Return the image tag
|
Return the image tag
|
||||||
|
|||||||
@@ -61,8 +61,6 @@ auth:
|
|||||||
|
|
||||||
# OAuth2/OIDC settings (experimental)
|
# OAuth2/OIDC settings (experimental)
|
||||||
oauth:
|
oauth:
|
||||||
# Port for OAuth MCP server (default: 8001)
|
|
||||||
port: 8001
|
|
||||||
# OAuth token type: "jwt" or "opaque"
|
# OAuth token type: "jwt" or "opaque"
|
||||||
tokenType: "jwt"
|
tokenType: "jwt"
|
||||||
# Pre-registered OAuth client ID (optional, ignored if existingSecret is set)
|
# Pre-registered OAuth client ID (optional, ignored if existingSecret is set)
|
||||||
@@ -97,8 +95,11 @@ auth:
|
|||||||
mcp:
|
mcp:
|
||||||
# Transport mode (default: streamable-http for SSE)
|
# Transport mode (default: streamable-http for SSE)
|
||||||
transport: "streamable-http"
|
transport: "streamable-http"
|
||||||
# Port for basic auth mode
|
# Port for MCP server (both basic auth and OAuth modes)
|
||||||
port: 8000
|
port: 8000
|
||||||
|
# Additional command-line arguments to pass to nextcloud-mcp-server
|
||||||
|
# Example: ["--log-level", "debug", "--enable-app", "notes"]
|
||||||
|
extraArgs: []
|
||||||
|
|
||||||
# Document processing configuration (optional)
|
# Document processing configuration (optional)
|
||||||
documentProcessing:
|
documentProcessing:
|
||||||
|
|||||||
+6
-2
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "nextcloud-mcp-server"
|
name = "nextcloud-mcp-server"
|
||||||
version = "0.22.2"
|
version = "0.22.5"
|
||||||
description = "Model Context Protocol (MCP) server for Nextcloud integration - enables AI assistants to interact with Nextcloud data"
|
description = "Model Context Protocol (MCP) server for Nextcloud integration - enables AI assistants to interact with Nextcloud data"
|
||||||
authors = [
|
authors = [
|
||||||
{name = "Chris Coutinho", email = "chris@coutinho.io"}
|
{name = "Chris Coutinho", email = "chris@coutinho.io"}
|
||||||
@@ -66,7 +66,11 @@ version_provider = "uv"
|
|||||||
update_changelog_on_bump = true
|
update_changelog_on_bump = true
|
||||||
major_version_zero = true
|
major_version_zero = true
|
||||||
version_files = [
|
version_files = [
|
||||||
"charts/nextcloud-mcp-server/Chart.yaml:^appVersion:"
|
"charts/nextcloud-mcp-server/Chart.yaml:appVersion",
|
||||||
|
"charts/nextcloud-mcp-server/Chart.yaml:version"
|
||||||
|
]
|
||||||
|
ignored_tag_formats = [
|
||||||
|
"nextcloud-mcp-server-*"
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.ruff.lint]
|
[tool.ruff.lint]
|
||||||
|
|||||||
@@ -941,7 +941,7 @@ wheels = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "nextcloud-mcp-server"
|
name = "nextcloud-mcp-server"
|
||||||
version = "0.22.2"
|
version = "0.22.5"
|
||||||
source = { editable = "." }
|
source = { editable = "." }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "caldav" },
|
{ name = "caldav" },
|
||||||
|
|||||||
Reference in New Issue
Block a user