Enables interaction with Dell PowerScale (Isilon) storage clusters, providing tools to manage the OneFS REST API across categories such as file protocols (SMB, NFS, S3), networking, snapshots, quotas, and cluster configuration.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Dell Isilon (PowerScale) MCP ServerShow me a list of all SMB shares and the current cluster health."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Isilon MCP Server
A professional-grade Model Context Protocol (MCP) server for Dell PowerScale (Isilon) OneFS API integration. This server enables AI assistants like Claude to interact with PowerScale storage clusters through a comprehensive set of tools generated from the OneFS 9.7 REST API specification.
Features
š Complete API Coverage: 2,434 operations across 46 categories
š Secure Authentication: Basic Auth with TLS support
š¦ Dynamic Tool Generation: Auto-generates MCP tools from OpenAPI spec
š Multiple Transports: stdio (Claude Desktop) and HTTP/SSE (n8n)
š Comprehensive Logging: Structured JSON and colored console output
ā” Async/Await: Built on httpx for high-performance async operations
š”ļø Credential-Free Mode: Explore available tools without credentials
Supported API Categories
Category | Operations | Description |
Auth | 373 | Authentication, users, groups, roles, providers |
Protocols | 351 | SMB, NFS, HDFS, S3, HTTP, FTP, Swift |
Sync | 185 | SyncIQ replication policies, reports, jobs |
Cluster | 167 | Cluster management, nodes, configuration |
Network | 153 | Networking, subnets, pools, interfaces |
Datamover | 151 | Data migration, accounts, policies |
Cloud | 136 | CloudPools, tiering, accounts |
Snapshot | 117 | Snapshot schedules, aliases, locks |
Upgrade | 85 | Cluster upgrade management |
Event | 83 | Event channels, alerts, settings |
Quota | 78 | SmartQuotas management |
Job | 72 | Job engine, policies, reports |
... | ... | And 34 more categories! |
Quick Start
Prerequisites
Python 3.10 or higher
Access to a Dell PowerScale cluster with REST API enabled
API credentials with appropriate permissions
Installation
From PyPI (Recommended)
From Source
Configuration
Copy the example environment file:
Edit
.envwith your PowerScale credentials:
Running the Server
stdio Transport (for Claude Desktop)
HTTP/SSE Transport (for n8n or web clients)
Claude Desktop Integration
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
n8n Integration
Start the HTTP server:
In n8n, add an MCP Client node pointing to:
Example Usage
Once connected, you can ask Claude to:
"List all SMB shares on the cluster"
"Show me the cluster health status"
"Create a new NFS export for /ifs/data/project1"
"Get all snapshots older than 30 days"
"Show active SyncIQ policies"
"List users in the local provider"
Project Structure
Development
Running Tests
Code Quality
API Reference
Tool Naming Convention
Tools are named using the pattern:
Examples:
auth_list_providers- List authentication providersprotocols_list_smb_shares- List SMB sharessnapshot_create_snapshot- Create a new snapshotcluster_get_cluster_config- Get cluster configuration
Authentication
The server uses HTTP Basic Authentication with your PowerScale credentials. All requests are made over HTTPS by default.
Error Handling
The server provides detailed error messages for:
Authentication failures
Connection errors
Rate limiting
API validation errors
Security Considerations
Never commit - They contain sensitive credentials
Use TLS verification - Set
ISILON_TLS_VERIFY=truein productionPrinciple of least privilege - Use API users with minimal required permissions
Read-only mode - Set
READ_ONLY_MODE=truefor monitoring-only access
Troubleshooting
Connection Issues
Certificate Errors
If using self-signed certificates:
Debug Mode
Enable detailed logging:
License
MIT License - see LICENSE for details.
Contributing
Contributions are welcome! Please read our contributing guidelines and submit pull requests.
Acknowledgments
Dell PowerScale for the comprehensive REST API
Model Context Protocol for the MCP specification
Anthropic Claude for AI assistant integration