1. Conduid
  2. AI
  3. azure-storage
MCP server · AI

azure-storage

MCP server for Azure Storage - Blob, Files, Queues, and Tables

Unclaimed cloud
39Low

Scored 3 months ago · breakdown

About azure-storage

azure-storage is an MCP server published by git+klemensms in the AI category: mCP server for Azure Storage - Blob, Files, Queues, and Tables. It has been installed 0 times through Conduid.

Install

Install
npx @mcp-consultant-tools/azure-storage
Claude Code
claude mcp add consultant-tools -- npx -y @mcp-consultant-tools/azure-storage
npx
npx -y @mcp-consultant-tools/azure-storage

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about azure-storage

Powered by Claude · Grounded in docs

I know everything about azure-storage. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

MCP Consultant Tools

Modular Model Context Protocol (MCP) server providing AI-powered access to Microsoft PowerPlatform, Azure DevOps, Figma, Azure monitoring services, databases, and GitHub Enterprise.

npm version

Overview

MCP Consultant Tools is a modular monorepo with 22 independently published npm packages under the @mcp-consultant-tools organization. Install individual packages for specific integrations or the complete meta-package for everything.

Package Architecture

Core Package

Package Description
@mcp-consultant-tools/core Shared utilities, MCP helpers, audit logging

Service Packages

Package Integration Tools CLI Binary Documentation
powerplatform-core Shared PowerPlatform services (internal) N/A N/A
powerplatform PowerPlatform/Dataverse (Read-Only) 49 mcp-pp-cli Setup & Usage
powerplatform-customization PowerPlatform Schema Changes 85 mcp-pp-custom-cli Setup & Usage
powerplatform-data PowerPlatform Data CRUD 13 mcp-pp-data-cli Setup & Usage
azure-devops Azure DevOps Wikis, Work Items, PRs, Builds, Test Runs 64 mcp-ado-cli Setup & Usage
azure-devops-admin Azure DevOps Pipelines, Service Conns, Pools 66 mcp-ado-admin-cli Setup & Usage
azure-management Azure ARM API (Functions, App Services, Key Vault, SQL, Monitoring) 31 mcp-azure-mgmt-cli Setup & Usage
sharepoint SharePoint Online 16-22 mcp-spo-cli Setup & Usage
github-enterprise GitHub Enterprise 22 mcp-ghe-cli Setup & Usage
figma Figma Design Extraction 4 mcp-figma-cli Setup & Usage
application-insights Application Insights 10 mcp-appins-cli Setup & Usage
log-analytics Log Analytics 13 mcp-loganalytics-cli Setup & Usage
1password 1Password Vault & Item Management 21 mcp-op-cli Setup & Usage
azure-sql Azure SQL Database 20 mcp-sql-cli Setup & Usage
service-bus Azure Service Bus 8 mcp-sb-cli Setup & Usage
azure-b2c Azure AD B2C 11 mcp-azure-b2c-cli Setup & Usage
azure-storage Azure Blob, Files, Queue, Table Storage 47 mcp-storage-cli Setup & Usage
azure-data-factory Azure Data Factory 24 mcp-adf-cli Setup & Usage
rest-api Generic REST API (OAuth2) 4 mcp-rest-api-cli Setup & Usage
teams Microsoft Teams messaging 7 mcp-teams-cli Setup & Usage

Meta-Package

Package Description
mcp-consultant-tools Complete package with all integrations

Troubleshooting: npx Cache Issues

If you experience authentication failures after switching package versions (e.g., between @beta and @latest), clear the npx cache:

npx clear-npx-cache

Then restart your MCP client. See Azure DevOps Troubleshooting for details.


Install All CLI Tools

Install every CLI tool globally with one command. Ideal for AI agents, investigation workflows, and developers who want all tools available instantly.

# macOS / Linux
curl -sL https://raw.githubusercontent.com/klemensms/mcp-consultant-tools/main/docs/cli-setup/install-cli-tools.sh | bash

# Windows (PowerShell)
irm https://raw.githubusercontent.com/klemensms/mcp-consultant-tools/main/docs/cli-setup/install-cli-tools.ps1 | iex

After installation, all 19 CLI binaries are in your PATH and ready to use. Pass credentials via --env-file .env or --mcp-server SERVER_NAME (reads from .mcp.json).

Full setup guide with agent prompt: CLI Setup Guide


Quick Start

Option 1: Individual Package (Recommended)

# Install only what you need
npx @mcp-consultant-tools/powerplatform

Option 2: Complete Package

# All integrations in one package
npx mcp-consultant-tools

MCP Client Configuration

Each package documentation includes complete setup instructions with configuration examples for Claude Desktop and VS Code. See the Documentation column in the table above.

Example (PowerPlatform with Claude Desktop):

{
  "mcpServers": {
    "powerplatform": {
      "command": "npx",
      "args": ["-y", "--package=@mcp-consultant-tools/powerplatform", "mcp-consultant-tools-powerplatform"],
      "env": {
        "POWERPLATFORM_URL": "https://yourenv.crm.dynamics.com",
        "POWERPLATFORM_CLIENT_ID": "your-client-id",
        "POWERPLATFORM_TENANT_ID": "your-tenant-id"
      }
    }
  }
}

For complete setup including authentication options, permissions, and troubleshooting, see PowerPlatform Documentation.

Option 3: CLI Usage

Every package also includes a Commander.js CLI for shell-based access to the same tools:

# Run any CLI via npx
npx --package=@mcp-consultant-tools/azure-devops mcp-ado-cli wiki list MyProject

# JSON output mode
npx --package=@mcp-consultant-tools/azure-devops mcp-ado-cli --json wiki list MyProject

# List all available CLIs
npx --package=mcp-consultant-tools mcp-tools-cli list

CLI tools use the same environment variables as MCP servers. See the CLI Binary column in the package table above.

CLI Access for AI Agents (Copy-Paste for CLAUDE.md)

If you have MCP servers configured in another repo and want agents/subagents to also use CLI tools (e.g., in hooks, subagents that don't inherit MCP connections, or shell scripts), add this to that repo's CLAUDE.md:

CLI Tools (for subagents, hooks, and scripting)

MCP servers are configured for native tool access, but CLI equivalents are also available via npx for use in subagents (which don't inherit MCP connections), hooks, and shell scripts. They use the same environment variables already configured for the MCP servers. Run npx --package=@mcp-consultant-tools/<package> <binary> --help for available commands. Common CLIs: mcp-ado-cli (Azure DevOps), mcp-pp-cli (PowerPlatform read-only), mcp-pp-custom-cli (PowerPlatform customization), mcp-pp-data-cli (PowerPlatform data), mcp-ado-admin-cli (ADO pipelines/admin), mcp-spo-cli (SharePoint), mcp-sql-cli (Azure SQL), mcp-appins-cli (Application Insights), mcp-loganalytics-cli (Log Analytics), mcp-storage-cli (Azure Storage), mcp-adf-cli (Data Factory), mcp-azure-mgmt-cli (Azure Management), mcp-ghe-cli (GitHub Enterprise), mcp-azure-b2c-cli (Azure B2C), mcp-sb-cli (Service Bus), mcp-figma-cli (Figma), mcp-rest-api-cli (REST API), mcp-teams-cli (Teams). Use --json for raw JSON output suitable for piping.

PowerPlatform Security Split

The PowerPlatform integration is split into 3 security-isolated packages:

Package Purpose Production-Safe?
powerplatform Read-only access ✅ YES
powerplatform-customization Schema changes ⚠️ Dev/config only
powerplatform-data Data CRUD ⚠️ Operational use

Security is enforced through package selection - install only what you need per environment.

Documentation

Setup Guides (Start Here)

Each integration has comprehensive documentation with quick start, configuration, tool reference, and examples:

Development & Technical Guides

Development

Build All Packages

npm install
npm run build

Build Individual Package

cd packages/powerplatform
npm run build

Local Testing

{
  "mcpServers": {
    "local-dev": {
      "command": "node",
      "args": ["/path/to/mcp-consultant-tools/packages/powerplatform/build/index.js"],
      "env": { "..." }
    }
  }
}

Links

License

MIT License - see LICENSE for details.

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About azure-storage

How do I install azure-storage?

Run npx @mcp-consultant-tools/azure-storage, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is azure-storage safe to use with an AI agent?

Its trust score is 39 out of 100 (low). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is azure-storage still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.