npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@akrym1582/azstorage-mcp-server

v1.0.3

Published

Read-only Azure Storage MCP Server for Blob, Queue, and Table Storage

Downloads

210

Readme

@akrym1582/azstorage-mcp-server

Read-only Azure Storage MCP (Model Context Protocol) Server for Blob Storage, Queue Storage, and Table Storage.

npm version License: MIT

Features

  • Read-only — no write, update, or delete operations
  • Blob Storage — list containers, list blobs (flat & tree), read text content, download binary content
  • Queue Storage — list queues, peek messages (visibility unchanged)
  • Table Storage — list tables, get entity by key, query with OData filter
  • Cursor-based pagination — consistent cursor / hasMore pattern for all list operations
  • LLM-optimized responses — compact JSON, truncated text, no unnecessary fields
  • Connection string or Managed Identity authentication via environment variables

Installation

npm install -g @akrym1582/azstorage-mcp-server

Or use without installing via npx:

npx @akrym1582/azstorage-mcp-server

Authentication

Set one of the following environment variables before starting the server:

| Variable | Description | |---|---| | AZURE_STORAGE_CONNECTION_STRING | Full connection string (takes priority) | | AZURE_STORAGE_ACCOUNT_NAME | Storage account name; uses DefaultAzureCredential (Managed Identity, Azure CLI, etc.) |

MCP Client Configuration

Claude Desktop

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "azstorage": {
      "command": "npx",
      "args": ["-y", "@akrym1582/azstorage-mcp-server"],
      "env": {
        "AZURE_STORAGE_CONNECTION_STRING": "<your-connection-string>"
      }
    }
  }
}

To use Managed Identity instead, replace the env block with:

"env": {
  "AZURE_STORAGE_ACCOUNT_NAME": "<your-storage-account-name>"
}

Other MCP clients (Cursor, VS Code, etc.)

Use the same pattern with npx -y @akrym1582/azstorage-mcp-server as the command and supply one of the authentication environment variables.

MCP Tools

Blob Storage

| Tool | Description | |---|---| | storage.blobs.listContainers | List containers. Params: prefix, pageSize, cursor | | storage.blobs.listFlat | Flat blob list. Params: container, prefix, pageSize, cursor | | storage.blobs.listTree | Hierarchical blob list. Params: container, prefix, delimiter, pageSize, cursor | | storage.blobs.read | Read blob metadata + inline text (≤8 KB). Params: container, blob, maxBytes | | storage.blobs.download | Download blob chunk as base64. Params: container, blob, offset, length |

Queue Storage

| Tool | Description | |---|---| | storage.queues.list | List queues. Params: prefix, pageSize, cursor | | storage.queues.peek | Peek messages (read-only, no visibility change). Params: queue*, maxMessages |

Table Storage

| Tool | Description | |---|---| | storage.tables.list | List tables. Params: pageSize, cursor | | storage.tables.get | Get entity by key. Params: table, partitionKey, rowKey, select | | storage.tables.query | Query with OData filter. Params: table, filter, select, pageSize, cursor |

* = required

Response Format

All list operations return a common envelope:

{
  "items": [...],
  "page": {
    "pageSize": 20,
    "cursor": "opaque-next-cursor-or-null",
    "hasMore": true,
    "totalCount": null,
    "totalPages": null,
    "countMode": "disabled"
  },
  "summary": { "returned": 20 }
}

Use cursor from the previous response to fetch the next page.

Development

git clone https://github.com/akrym1582/azstorage-mcp-server.git
cd azstorage-mcp-server
npm install
npm run build   # compile TypeScript → dist/
npm test        # run unit tests
npm run dev     # run with tsx (no compilation needed)

License

MIT