WebDAV MCP Server
@LaubPlusCo
关于 WebDAV MCP Server
Model Context Protocol (MCP) server that enables CRUD operations on a WebDAV endpoint with basic authentication.
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"mcp-webdav-server": {
"command": "npx",
"args": [
"webdav-mcp-server"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is WebDAV MCP Server?
A Model Context Protocol (MCP) server that enables CRUD operations on a WebDAV endpoint with basic authentication. This server enables 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 global (npm install -g webdav-mcp-server), from source, or via Docker. Configure by setting environment variables in a .env file (e.g., WEBDAV_ROOT_URL, WEBDAV_ROOT_PATH). Run with webdav-mcp-server for stdio transport (Claude Desktop) or webdav-mcp-server --http for HTTP/SSE transport. For Claude Desktop integration, add the server configuration to claude_desktop_config.json.
Key features of WebDAV MCP Server
- CRUD operations on files and directories
- stdio (Claude Desktop) and HTTP/SSE transports
- Optional basic authentication for WebDAV and MCP
- bcrypt-encrypted passwords for MCP server auth
- Connection pooling for performance
- Configuration validation with Zod
Use cases of WebDAV MCP Server
- Manage files on remote WebDAV servers via natural language
- Automate file operations in Claude Desktop workflows
- Securely access WebDAV with basic auth from AI assistants
- Enable file CRUD operations in custom MCP clients
FAQ from WebDAV MCP Server
What are the prerequisites?
Node.js 18 or later, npm or yarn, and a WebDAV server for actual file operations.
Can I use encrypted passwords?
The WebDAV password must be in plain text due to protocol requirements. However, the MCP server authentication password can be a bcrypt hash (prefixed with {bcrypt}) for enhanced security.
How do I integrate with Claude Desktop?
Add the server configuration to your claude_desktop_config.json with the command (e.g., npx webdav-mcp-server) and required environment variables (WEBDAV_ROOT_URL, WEBDAV_ROOT_PATH, etc.).
What transports are available?
The server supports stdio transport (default, ideal for Claude Desktop) and HTTP/SSE transport (enabled with the --http flag for remote access).
Where does the WebDAV server data persist?
When using the provided Docker Compose setup, files are stored in a Docker volume named webdav_data, which persists across container restarts.
其他 分类下的更多 MCP 服务器
FastMCP v2 🚀
jlowin🚀 The fast, Pythonic way to build MCP servers and clients.
ICSS
chokcoco不止于 CSS

Sequential Thinking
modelcontextprotocolModel Context Protocol Servers
MCP Go 🚀
mark3labsA Go implementation of the Model Context Protocol (MCP), enabling seamless integration between LLM applications and external data sources and tools.

EverArt
modelcontextprotocolModel Context Protocol Servers
评论