This is a MCP server for connecting your AI code editor to your nextcloud deck kanban board. This was built with Cursor in mind but it could probably be adapted to work with other AI code editors as well
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"nextcloud-deck-mcp-s": {
"command": "go",
"args": [
"run",
"github.com/vatlnetwork/nextcloud-deck-mcp-server@latest"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add nextcloud-deck-mcp-s go run github.com/vatlnetwork/nextcloud-deck-mcp-server@latest
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"nextcloud-deck-mcp-s": {
"command": "go",
"args": [
"run",
"github.com/vatlnetwork/nextcloud-deck-mcp-server@latest"
]
}
}
}
📋 Copy