drio
Open app

nextcloud-mcp-server

Source

A MCP server for reading data from NextCloud

Catalog onlyCatalog onlySTDIO

Overview

nextcloud-mcp-server is a server designed to read data from NextCloud, enabling users to access and manage their NextCloud data programmatically.

To use nextcloud-mcp-server, clone the repository from GitHub, set up the server environment, and configure it to connect to your NextCloud instance.

  • Reads and retrieves data from NextCloud - Supports integration with various applications - Built using Python for easy customization
  1. Automating data retrieval from NextCloud for analysis.
  2. Integrating NextCloud data with other applications or services.
  3. Developing custom applications that require access to NextCloud data.

Add to your AI client

Use these steps to connect nextcloud-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "nextcloud-mcp-server-monadical-sas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-nextcloud-mcp-server-monadical-sas"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "nextcloud-mcp-server-monadical-sas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-nextcloud-mcp-server-monadical-sas"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "nextcloud-mcp-server-monadical-sas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-nextcloud-mcp-server-monadical-sas"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "nextcloud-mcp-server-monadical-sas": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-nextcloud-mcp-server-monadical-sas"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "nextcloud-mcp-server-monadical-sas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-nextcloud-mcp-server-monadical-sas"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "nextcloud-mcp-server-monadical-sas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-nextcloud-mcp-server-monadical-sas"
      ]
    }
  }
}

FAQ

What programming language is used for nextcloud-mcp-server?

nextcloud-mcp-server is built using Python.

Is there any documentation available?

Yes, you can find the documentation in the GitHub repository.

Can I contribute to the project?

Yes, contributions are welcome! Please check the contribution guidelines in the repository.