Adds 6 MCP tools so an LLM can read a user's Talk conversations and post messages on their behalf, addressing the "read my chats and reply" use case from issue #720: - talk_list_conversations - talk_get_conversation - talk_get_messages - talk_list_participants - talk_send_message (auto-attaches a referenceId for retry dedup) - talk_mark_as_read Edit/delete messages, reactions, threads, and call/session ops are intentionally out of scope for this first PR. The TalkClient also exposes create_conversation/delete_conversation for the integration test fixture; these are not registered as MCP tools. A post-installation hook enables spreed in the docker dev env so the integration suite has a real Talk backend to talk to. Closes #720 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
51 lines
1.7 KiB
Python
51 lines
1.7 KiB
Python
from collections.abc import Callable
|
|
|
|
from mcp.server.fastmcp import FastMCP
|
|
|
|
from .calendar import configure_calendar_tools
|
|
from .collectives import configure_collectives_tools
|
|
from .contacts import configure_contacts_tools
|
|
from .cookbook import configure_cookbook_tools
|
|
from .deck import configure_deck_tools
|
|
from .news import configure_news_tools
|
|
from .notes import configure_notes_tools
|
|
from .semantic import configure_semantic_tools
|
|
from .sharing import configure_sharing_tools
|
|
from .tables import configure_tables_tools
|
|
from .talk import configure_talk_tools
|
|
from .webdav import configure_webdav_tools
|
|
|
|
# Canonical mapping of app name → tool registration function.
|
|
# Used by app.py (HTTP), stdio.py (stdio), and cli.py (--enable-app choices).
|
|
# Semantic search is excluded here because it is a cross-app feature gated
|
|
# by VECTOR_SYNC_ENABLED, not an individual Nextcloud app.
|
|
AVAILABLE_APPS: dict[str, Callable[[FastMCP], None]] = {
|
|
"notes": configure_notes_tools,
|
|
"tables": configure_tables_tools,
|
|
"webdav": configure_webdav_tools,
|
|
"sharing": configure_sharing_tools,
|
|
"calendar": configure_calendar_tools,
|
|
"collectives": configure_collectives_tools,
|
|
"contacts": configure_contacts_tools,
|
|
"cookbook": configure_cookbook_tools,
|
|
"deck": configure_deck_tools,
|
|
"news": configure_news_tools,
|
|
"talk": configure_talk_tools,
|
|
}
|
|
|
|
__all__ = [
|
|
"AVAILABLE_APPS",
|
|
"configure_calendar_tools",
|
|
"configure_collectives_tools",
|
|
"configure_contacts_tools",
|
|
"configure_cookbook_tools",
|
|
"configure_deck_tools",
|
|
"configure_news_tools",
|
|
"configure_notes_tools",
|
|
"configure_semantic_tools",
|
|
"configure_sharing_tools",
|
|
"configure_tables_tools",
|
|
"configure_talk_tools",
|
|
"configure_webdav_tools",
|
|
]
|