drio
Open app

Pure Storage Model Context Protocol Server

Source

A simple MCP server to interact with Pure storage arrays

Catalog onlyCatalog onlySTDIO

Overview

Pure Storage Model Context Protocol Server is a simple server designed to interact with Pure storage arrays, allowing users to retrieve real-time information from a Pure Storage FlashBlade array.

To use the server, install it by adding the relevant entry to the claude_desktop_config.json file and configure it to run the pure-mcp-server command with the necessary arguments.

  • Modular tool (pure-fb) to process commands and retrieve information about arrays, volumes, and hosts. - Real-time data retrieval from Pure Storage FlashBlade arrays. - Easy configuration for different operating systems.
  1. Monitoring storage array performance and health.
  2. Managing volumes and hosts in a Pure Storage environment.
  3. Automating storage management tasks through command processing.

Add to your AI client

Use these steps to connect Pure Storage Model Context Protocol Server 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": {
    "pure-model-context-protocol-jboothomas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-pure-model-context-protocol-jboothomas"
      ]
    }
  }
}

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": {
    "pure-model-context-protocol-jboothomas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-pure-model-context-protocol-jboothomas"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "pure-model-context-protocol-jboothomas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-pure-model-context-protocol-jboothomas"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "pure-model-context-protocol-jboothomas": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-pure-model-context-protocol-jboothomas"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "pure-model-context-protocol-jboothomas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-pure-model-context-protocol-jboothomas"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "pure-model-context-protocol-jboothomas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-pure-model-context-protocol-jboothomas"
      ]
    }
  }
}

FAQ

What is the purpose of the MCP server?

The MCP server is designed to facilitate interaction with Pure storage arrays and provide real-time data retrieval.

How do I install the server?

You can install the server by adding the necessary configuration to the `claude_desktop_config.json` file on your system.

Is the server compatible with all operating systems?

Yes, the server can be configured for both MacOS and Windows.