Merge pull request #741 from cbcoutinho/feat/talk-spreed-integration

feat(talk): add MCP integration for Nextcloud Talk (spreed)
This commit is contained in:
Chris Coutinho
2026-04-30 01:26:47 +02:00
committed by GitHub
13 changed files with 1459 additions and 3 deletions
+2
View File
@@ -23,6 +23,7 @@ from .news import NewsClient
from .notes import NotesClient
from .sharing import SharingClient
from .tables import TablesClient
from .talk import TalkClient
from .users import UsersClient
from .webdav import WebDAVClient
from .webhooks import WebhooksClient
@@ -96,6 +97,7 @@ class NextcloudClient:
self.collectives = CollectivesClient(self._client, username)
self.deck = DeckClient(self._client, username)
self.news = NewsClient(self._client, username)
self.talk = TalkClient(self._client, username)
self.users = UsersClient(self._client, username)
self.groups = GroupsClient(self._client, username)
self.sharing = SharingClient(self._client, username)