MCP Storage Server MCP Server

Storacha MCP Storage Server - Decentralized storage for AI systems

Local serverstdioTypeScript

What is the MCP Storage Server MCP server?

Storacha MCP Storage Server - Decentralized storage for AI systems. Exposed over MCP by the mcp storage server mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

A Model Context Protocol (MCP) server implementation for Storacha hot storage, allowing AI applications to store and retrieve files through a standardized interface. It enables trustless, decentralized data exchange using IPFS and CIDs, ensuring data sovereignty, verifiability, and seamless integration with agent frameworks & AI systems.

Adding it to your client

The server ships on npm as @web3-storage/w3cli, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Its toolset

Everything the assistant can do here goes through one of these:

  • upload — Upload a file to the Storacha Network. The file must be provided as a base64 encoded string with a filename that includes the extension for MIME type
  • retrieve — Retrieve a file from the Storacha Network. Supported filepath formats: CID/filename, /ipfs/CID/filename, or ipfs://CID/filename
  • identity — Returns the DIDKey of the Storacha Agent loaded from the private key storage configuration

Configuration

You will need 3 environment variables: MCP_TRANSPORT_MODE, PRIVATE_KEY, DELEGATION. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp storage server mcp server does with a few real requests.

When to reach for it

This sits in the file and storage access group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. MCP Storage Server's toolset — upload, retrieve, identity — is a fair guide to whether it matches your workflow. It is maintained by storacha; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
uploadUpload a file to the Storacha Network. The file must be provided as a base64 encoded string with a filename that includes the extension for MIME type detection.
retrieveRetrieve a file from the Storacha Network. Supported filepath formats: CID/filename, /ipfs/CID/filename, or ipfs://CID/filename.
identityReturns the DIDKey of the Storacha Agent loaded from the private key storage configuration.

How to install the MCP Storage Server MCP server

{
  "mcpServers": {
    "storage-server": {
      "command": "npx",
      "args": ["-y", "@web3-storage/w3cli"],
      "env": {
        "MCP_TRANSPORT_MODE": "your-value",
        "PRIVATE_KEY": "your-value",
        "DELEGATION": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
MCP_TRANSPORT_MODEConfiguration value read at startup.Optional
PRIVATE_KEYCredential the server authenticates with.Yes
DELEGATIONConfiguration value read at startup.Optional

Example prompts to try

  • Use MCP Storage Server to upload.
  • Use MCP Storage Server to retrieve.
  • Use MCP Storage Server to identity.

Frequently asked questions

It connects MCP Storage Server to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (upload, retrieve, identity) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Storage Server directly.