Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Azure Blob Storage MCP Server
cloud

Azure Blob Storage MCP Server MCP Server

MCP server for Azure Blob Storage

azureblob-storagecloud-storagemicrosoft

About

## Azure Blob Storage MCP Server: Cloud Object Storage The **Azure Blob Storage MCP Server** integrates Microsoft Azure Blob Storage into Google Antigravity, enabling blob operations, container management, and shared access signature generation directly from your development environment. ### Why Azure Blob Storage MCP? - **Massive Scale**: Store petabytes of unstructured data with automatic scaling - **Tiered Storage**: Optimize costs with hot, cool, cold, and archive tiers - **Enterprise Security**: Integration with Azure Active Directory and RBAC - **Global Redundancy**: Multiple replication options for high availability - **Native Azure Integration**: Seamless integration with Azure services ### Key Features #### 1. Blob Operations ```python # Upload a blob await mcp.upload_blob( container="my-container", blob_name="documents/report.pdf", file_path="./report.pdf", content_type="application/pdf" ) # Download a blob content = await mcp.download_blob( container="my-container", blob_name="documents/report.pdf" ) # Upload from string/bytes await mcp.upload_blob_data( container="my-container", blob_name="data/config.json", data=json.dumps(config), overwrite=True ) ``` #### 2. Container Management ```python # Create container await mcp.create_container( name="my-container", public_access="blob" # or "container" or None ) # List containers containers = await mcp.list_containers() for container in containers: print(f"Container: {container['name']}") # List blobs in container blobs = await mcp.list_blobs( container="my-container", prefix="documents/" ) for blob in blobs: print(f"Blob: {blob['name']} ({blob['size']} bytes)") ``` #### 3. SAS Token Generation ```python # Generate SAS URL for blob sas_url = await mcp.generate_sas_url( container="my-container", blob_name="documents/report.pdf", permissions="r", # read only expiry_hours=24 ) # Generate container SAS container_sas = await mcp.generate_container_sas( container="uploads", permissions="rwl", # read, write, list expiry_hours=1 ) ``` #### 4. Blob Properties ```python # Get blob properties props = await mcp.get_blob_properties( container="my-container", blob_name="documents/report.pdf" ) print(f"Size: {props['size']}") print(f"Content-Type: {props['content_type']}") print(f"Last Modified: {props['last_modified']}") # Set metadata await mcp.set_blob_metadata( container="my-container", blob_name="documents/report.pdf", metadata={"author": "John", "version": "2"} ) ``` ### Configuration ```json { "mcpServers": { "azure-blob": { "command": "npx", "args": ["-y", "@anthropic/mcp-azure-blob"], "env": { "AZURE_STORAGE_CONNECTION_STRING": "your-connection-string", "AZURE_STORAGE_ACCOUNT_NAME": "your-account", "AZURE_STORAGE_ACCOUNT_KEY": "your-key" } } } } ``` ### Use Cases **Application Storage**: Store user uploads, generated reports, and application assets with secure access. **Archival Storage**: Archive historical data with lifecycle management to optimize storage costs. **Media Streaming**: Store and stream video content with Azure CDN integration for global distribution. **Data Processing**: Stage data for Azure Data Factory, Databricks, or Synapse Analytics pipelines. The Azure Blob Storage MCP enables Azure cloud storage management within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "azure-blob": {
      "mcpServers": {
        "azure-blob": {
          "env": {
            "AZURE_STORAGE_CONNECTION_STRING": "YOUR_CONNECTION_STRING"
          },
          "args": [
            "-y",
            "azure-blob-storage-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Get connection string from Azure Portal
  2. 2Configure storage account access
  3. 3Supports container and blob operations

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers