Model Context Protocol Server for Apache OpenDAL™
Model Context Protocol Server for Apache OpenDAL™
Overview
Model Context Protocol Server for Apache OpenDAL™ is an implementation that provides seamless access to various storage services through Apache OpenDAL™.
To use the server, install it via pip and configure your storage services by setting the appropriate environment variables. You can then use commands like read and list to interact with your storage services.
- Access to multiple storage services including S3, Azure Blob Storage, and Google Cloud Storage. - Ability to list files and directories from these services. - Automatic detection of text/binary file contents. - Configuration through environment variables.
- Integrating multiple cloud storage services into a single application.
- Managing files across different storage platforms seamlessly.
- Automating data retrieval and storage operations in cloud environments.
Add to your AI client
Use these steps to connect Model Context Protocol Server for Apache OpenDAL™ 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": {
"mcp-server-opendal-xuanwo": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-opendal-xuanwo"
]
}
}
}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": {
"mcp-server-opendal-xuanwo": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-opendal-xuanwo"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-opendal-xuanwo": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-opendal-xuanwo"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-opendal-xuanwo": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-opendal-xuanwo"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-opendal-xuanwo": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-opendal-xuanwo"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-opendal-xuanwo": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-opendal-xuanwo"
]
}
}
}FAQ
What storage services are supported?
The server supports S3, Azure Blob Storage, Google Cloud Storage, and more.
How do I install the server?
You can install it using the command: `pip install mcp-server-opendal`.
Can I configure the server using a .env file?
Yes! The server can load configurations from a .env file.7:["$"