Google Cloud NetApp Volumes MCP Server
OfficialProvides tools to manage Google Cloud NetApp Volumes resources including storage pools, volumes, snapshots, backup vaults, backups, backup policies, replications, active directory, KMS configs, quota rules, and host groups.
Provides tools to manage NetApp storage resources on Google Cloud, including storage pools, volumes, snapshots, backups, and replications.
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., "@Google Cloud NetApp Volumes MCP Serverlist all storage pools in my project"
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.
Google Cloud NetApp Volumes MCP Server
A Model Context Protocol (MCP) server for managing Google Cloud NetApp Volumes (GCNV) resources through AI assistants such as Gemini CLI, Cursor, and other MCP-compatible clients.
Supported Resources
Resource | Operations |
Storage Pools | create, get, list, update, delete, validate directory service |
Volumes | create, get, list, update, delete |
Snapshots | create, get, list, update, delete, revert |
Backup Vaults | create, get, list, update, delete |
Backups | create, get, list, update, delete, restore, restore files |
Backup Policies | create, get, list, update, delete |
Replications | create, get, list, update, delete, stop, resume, reverse direction, sync, establish peering |
Active Directory | create, get, list, update, delete |
KMS Configs | create, get, list, update, delete, verify, encrypt volumes |
Quota Rules | create, get, list, update, delete |
Host Groups | create, get, list, update, delete |
Operations | get, list, cancel |
Prerequisites
Node.js 18 or higher
A Google Cloud project with the NetApp Volumes API enabled
Google Cloud authentication credentials (see Authentication)
Quick Start
Run the published package directly (no local build required):
npx gcnv-mcp-server@latest --transport stdioOr install via the Gemini CLI extension workflow:
# 1. Authenticate
gcloud auth login
gcloud auth application-default login
# 2. Install the extension
gemini extension install <repository-url>
# 3. Verify
gemini mcp listGemini automatically starts the MCP server when a linked extension needs it. No manual
npm startis required for normal usage.
Authentication
The server uses Google Cloud credentials to authenticate API requests. Configure one of the following before invoking any tool:
Application Default Credentials (recommended)
gcloud auth application-default loginService account key file
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/key.jsonTransport Modes
The server supports stdio (default) and HTTP/SSE transports.
Stdio (default)
Used automatically by Gemini CLI and other stdio-based MCP clients.
npm start # default stdio
npm run start:stdio # explicitHTTP/SSE
For web-based MCP clients or remote access.
npm run start:http # port 3000
npm start -- -t http -p 8080 # custom portOption | Description | Default |
|
|
|
| HTTP listen port |
|
HTTP endpoint: http://localhost:<port>/message
Tool Reference
Storage Pool Tools
Tool | Description |
| Create a storage pool (FLEX / STANDARD / PREMIUM / EXTREME) |
| Get storage pool details |
| List storage pools (supports pagination and filtering) |
| Update pool capacity, description, labels, QoS, or type |
| Delete a storage pool |
| Validate attached directory service |
Service level guidance:
FLEX -- Smaller minimums, broader region availability, independent performance scaling. Minimum: 1024 GiB (FILE/UNIFIED) or 6144 GiB (UNIFIED large capacity).
STANDARD / PREMIUM / EXTREME -- Classic tiers with fixed performance-to-capacity ratio. Minimum: 2048 GiB.
serviceLevelis accepted case-insensitively (e.g.flexorFLEX).FLEX pools in a region-level location require both
zoneandreplicaZone; zone-level locations satisfy this automatically.storagePoolTypeacceptsFILEorUNIFIED;UNIFIEDis only available for FLEX.scaleType: only set toSCALE_TYPE_SCALEOUTwhen creating a large capacity FLEXUNIFIEDpool. Omit for all other pools (defaults toSCALE_TYPE_DEFAULT).
Volume Tools
Tool | Description |
| Create a volume (NFS, SMB, or iSCSI) |
| Get volume details including mount points |
| List volumes with pagination and filtering |
| Update capacity, description, labels, export policy, tiering, backup config |
| Delete a volume |
iSCSI notes: Protocols must be ["ISCSI"] only (no mixing). Requires hostGroup or hostGroups. Optional blockDevice object with identifier, osType (LINUX / WINDOWS / ESXI), and sizeGib.
Large capacity volumes: Some workloads require larger volumes and higher throughput, which can be achieved by using the large capacity volume option for these service levels. Large capacity volumes provide six storage endpoints (IP addresses) to load-balance client traffic to the volume and deliver higher performance.
FLEX Unified: Large capacity volumes can be sized between 4.8 TiB and 2.48 PiB, or up to 20 PiB with auto-tiering, in increments of 1 GiB, and deliver throughput performance of up to 22 GiBps. The FLEX storage pool must be created with
scaleType: SCALE_TYPE_SCALEOUT; non-scale-out FLEX pools cannot host large capacity volumes. WhenlargeCapacityConstituentCountis explicitly set, the minimum drops to 2.4 TiB (2,400 GiB) — FLEX Unified only. WhenlargeCapacityConstituentCountis omitted, the 4.8 TiB (4,916 GiB) floor applies.Premium and Extreme: Large capacity volumes can be sized between 15 TiB and 3 PiB in increments of 1 GiB, and deliver throughput performance of up to 30 GiBps.
A large capacity volume is internally composed of several constituent volumes (FlexVols) distributed across the pool's storage aggregates. On gcnv_volume_create you can optionally pass largeCapacityConstituentCount to control how many constituents the volume is built from:
Minimum:
2.Default (when omitted): chosen by the backend based on the active deployment layout.
The constituent count must be chosen at create time and cannot be changed later.
SMB attributes: When protocols includes SMB, gcnv_volume_create accepts optional SMB feature flags that map to the smbSettings field on the volume:
smbEncryptData: true→ENCRYPT_DATA(require SMB encryption in flight)smbHideShare: true→NON_BROWSABLE(hide the share from browse lists)smbAccessBasedEnumeration: true→ACCESS_BASED_ENUMERATION(ABE) — controls the visibility of files and folders based on the permissions assigned to the usersmbContinuouslyAvailable: true→CONTINUOUSLY_AVAILABLE(CA share for SQL Server / FSLogix; choice is permanent on the volume)smbSettings: ["OPLOCKS", ...]— additional API enum values; merged with the booleans above. Do not passSMB_SETTINGS_UNSPECIFIED;BROWSABLEandNON_BROWSABLE(orBROWSABLEtogether withsmbHideShare) are rejected.NON_BROWSABLEandCONTINUOUSLY_AVAILABLEtogether (orsmbHideSharewithsmbContinuouslyAvailable) are also rejected — CA shares must be browsable.
These flags require protocols to include SMB. CONTINUOUSLY_AVAILABLE is not supported on FLEX storage pools — the request is rejected before reaching the API. Use STANDARD, PREMIUM, or EXTREME for CA shares.
Snapshot Tools
Tool | Description |
| Create a snapshot of a volume |
| Get snapshot details |
| List snapshots for a volume |
| Update snapshot description or labels |
| Delete a snapshot |
| Revert a volume to a snapshot |
Backup Vault Tools
Tool | Description |
| Create a backup vault (with optional retention policy) |
| Get backup vault details |
| List backup vaults |
| Update description, labels, or retention policy |
| Delete a backup vault |
Backup Tools
Tool | Description |
| Create a backup from a volume or snapshot |
| Get backup details |
| List backups in a vault |
| Update backup description or labels |
| Delete a backup |
| Restore a backup to a volume |
| Restore specific files from a backup |
Backup Policy Tools
Tool | Description |
| Create a backup policy with daily/weekly/monthly limits |
| Get backup policy details |
| List backup policies |
| Update backup policy settings |
| Delete a backup policy |
Replication Tools
Tool | Description |
| Create a volume replication |
| Get replication details |
| List replications |
| Update replication settings |
| Delete a replication |
| Stop an active replication |
| Resume a stopped replication |
| Reverse replication direction |
| Trigger an on-demand replication sync |
| Establish peering for cross-region replication |
Replication is supported between specific region pairs (Standard/Premium/Extreme) or within the same region group (Flex). See the replication guide.
Active Directory Tools
Tool | Description |
| Create an Active Directory configuration |
| Get Active Directory details |
| List Active Directory configurations |
| Update Active Directory settings |
| Delete an Active Directory configuration |
KMS Config Tools
Tool | Description |
| Create a KMS configuration |
| Get KMS config details |
| List KMS configurations |
| Update KMS config settings |
| Delete a KMS configuration |
| Verify a KMS configuration |
| Encrypt volumes with a KMS config |
Quota Rule Tools
Tool | Description |
| Create a quota rule for a volume |
| Get quota rule details |
| List quota rules |
| Update a quota rule |
| Delete a quota rule |
Host Group Tools
Tool | Description |
| Create a host group (iSCSI initiator group) |
| Get host group details |
| List host groups |
| Update a host group |
| Delete a host group |
Operation Tools
Tool | Description |
| Get details of a long-running operation |
| List operations with filtering and pagination |
| Cancel an in-progress operation |
Architecture
src/
index.ts # Entry point (stdio + HTTP/SSE transports)
logger.ts # Structured logging (pino)
registry/
register-tools.ts # Tool registration
tools/
*-tools.ts # Tool definitions (Zod schemas)
handlers/
*-handler.ts # Tool implementations
types/
tool.ts # Shared TypeScript interfaces
utils/
netapp-client-factory.ts # NetApp client factory with cachingDevelopment
Build and test
npm install
npm run build # lint + format + compile
npm test # run all tests
npm run test:coverage # with coverage reportDev mode
npm run dev # stdio via tsx
npm run dev:http # HTTP via tsxAdding a new tool
Define the tool schema in
src/tools/<resource>-tools.tsImplement the handler in
src/tools/handlers/<resource>-handler.tsRegister the tool in
src/registry/register-tools.ts
Pre-commit hook
npm run githooks:install # enables lint + test on commitBilling
Pricing is based on provisioned pool capacity, not consumed capacity. Some features (e.g. auto-tiering) add usage-based I/O charges. See the pricing page or use the Google Cloud Pricing Calculator for estimates.
License
Apache-2.0
Feedback
We'd love to hear from you. Share feedback, feature requests, or bug reports at ng-gcnv-mcp-feedback@netapp.com.
Contributing
Contributions are welcome. Please open an issue or submit a pull request.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/NetApp/gcnv-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server