MCP.so
登录

WebDAV MCP Server

@LaubPlusCo

关于 WebDAV MCP Server

Model Context Protocol (MCP) server that enables CRUD operations on a WebDAV endpoint with basic authentication.

基本信息

分类

其他

许可证

MIT

运行时

node

传输方式

stdio

发布者

LaubPlusCo

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "mpc-webdav-server": {
      "command": "npx",
      "args": [
        "webdav-mcp-server"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is WebDAV MCP Server?

WebDAV MCP Server is a Model Context Protocol (MCP) server that enables CRUD operations on a WebDAV endpoint with basic authentication. It allows Claude Desktop and other MCP clients to interact with WebDAV file systems through natural language commands.

How to use WebDAV MCP Server?

Install via npm (npm install -g webdav-mcp-server), clone and build from source, or use Docker. Configure environment variables in a .env file (e.g., WEBDAV_ROOT_URL, WEBDAV_ROOT_PATH, optional credentials). Run with webdav-mcp-server for stdio transport (default) or webdav-mcp-server --http for HTTP/SSE transport. Integrate with Claude Desktop by adding the server to claude_desktop_config.json with the appropriate command and environment variables.

Key features of WebDAV MCP Server

  • Connect to any WebDAV server with optional authentication
  • Perform CRUD operations on files and directories
  • Expose file operations as MCP resources and tools
  • Run via stdio or HTTP/SSE transport
  • Secure access with optional basic authentication
  • Support bcrypt-encrypted passwords for MCP server authentication

Use cases of WebDAV MCP Server

  • Manage files on a remote WebDAV server via natural language in Claude Desktop
  • Create, read, update, and delete files and directories programmatically
  • List directory contents and move or copy items between paths
  • Automate file operations by integrating with MCP-compatible clients

FAQ from WebDAV MCP Server

What is the difference between WebDAV password and MCP server password?

WebDAV passwords must be plain text because the WebDAV protocol requires sending the actual password to the server. MCP server passwords can be stored as bcrypt-encrypted hashes with a {bcrypt} prefix for enhanced security.

What transports are available?

Two transports are supported: stdio (default, for Claude Desktop integration) and HTTP/SSE (enable with --http flag for remote access with real-time communication).

How do I install WebDAV MCP Server?

Install globally via npm (npm install -g webdav-mcp-server), run with npx (npx webdav-mcp-server), clone and build from source, or use the provided Docker image.

What are the prerequisites?

Node.js 18 or later, npm or yarn, and access to a WebDAV server for actual file operations. Optional: Docker for containerized deployment.

How is authentication handled?

WebDAV authentication is optional and uses basic auth (plaintext password). MCP server authentication is also optional; passwords can be plain text or bcrypt hashes. HTTP mode supports a realm for the MCP server.

评论

其他 分类下的更多 MCP 服务器