Akave Storage

Akave Storage

Official
akave-ai

Integrates with Akave's S3-compatible storage platform to manage buckets, upload/download files, and generate secure access URLs through AI models.

Integrates with Akave's S3-compatible storage platform to manage buckets and objects, upload/download files, generate signed URLs, and handle file operations with automatic text cleaning for common formats.

2344 views1Local (stdio)

What it does

  • List and manage storage buckets
  • Upload and download files
  • Generate signed URLs for secure access
  • Manage objects in S3-compatible storage
  • Clean text from common file formats
  • Handle file operations through AI models

Best for

Developers using Akave cloud storageAI-powered file management workflowsSecure file sharing with signed URLsS3-compatible storage automation
S3-compatible storage interfaceWorks with Claude and local LLMsAutomatic text cleaning for files

About Akave Storage

Akave Storage is an official MCP server published by akave-ai that provides AI assistants with tools and capabilities via the Model Context Protocol. Akave Storage: Manage buckets, upload/download files, and generate signed URLs with automatic text cleaning on Akave's S It is categorized under cloud infrastructure, file systems.

How to install

You can install Akave Storage in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

License

Akave Storage is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

Akave MCP Server

A Model Context Protocol (MCP) server that enables AI models to interact with Akave's S3-compatible storage. This server provides a set of tools for managing your Akave storage buckets and objects through AI models like Claude and local LLMs.

What is MCP?

The Model Context Protocol (MCP) is an open protocol that standardizes how applications provide context to Large Language Models (LLMs). Think of MCP like a USB-C port for AI applications - it provides a standardized way to connect AI models to different data sources and tools.

Features

  • List and manage buckets
  • Upload, download, and manage objects
  • Generate signed URLs for secure access
  • Support for both Claude and local LLMs (via Ollama)
  • Simple configuration through JSON

Prerequisites

  • Node.js 16+
  • Access to an Akave account with:
    • Access Key ID
    • Secret Access Key
    • Endpoint URL
  • For local LLM support:
    • Go 1.23 or later
    • Ollama installed

Quick Start

Create a configuration file (e.g., mcp.json):

{
  "mcpServers": {
    "akave": {
      "command": "npx",
      "args": [
        "-y",
        "akave-mcp-js"
      ],
      "env": {
        "AKAVE_ACCESS_KEY_ID": "your_access_key",
        "AKAVE_SECRET_ACCESS_KEY": "your_secret_key",
        "AKAVE_ENDPOINT_URL": "your_endpoint_url"
      }
    }
  }
}

Usage with Claude Desktop

  1. Download and install Claude for Desktop (macOS or Windows)

  2. Open Claude Desktop Settings:

    • Click on the Claude menu
    • Select "Settings..."
    • Click on "Developer" in the left-hand bar
    • Click on "Edit Config"
  3. This will create/update the configuration file at:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  4. Add the Akave MCP server configuration to the file:

{
  "mcpServers": {
    "akave": {
      "command": "npx",
      "args": [
        "-y",
        "akave-mcp-js"
      ],
      "env": {
        "AKAVE_ACCESS_KEY_ID": "your_access_key",
        "AKAVE_SECRET_ACCESS_KEY": "your_secret_key",
        "AKAVE_ENDPOINT_URL": "your_endpoint_url"
      }
    }
  }
}
  1. Restart Claude Desktop

  2. You should see a slider icon in the bottom left corner of the input box. Click it to see the available Akave tools.

Usage with Local LLMs (Ollama)

  1. Install MCPHost:
go install github.com/mark3labs/mcphost@latest
  1. Start MCPHost with your preferred model using the same configuration file:
# Using default config location
mcphost -m ollama:mistral

# Or specify a custom config file
mcphost -m ollama:mistral --config /path/to/your/mcp.json

# For debugging
mcphost --debug -m ollama:mistral --config /path/to/your/mcp.json

You can use any Ollama model, for example:

  • ollama:mistral
  • ollama:qwen2.5
  • ollama:llama2

Available Tools

The server provides the following MCP tools:

  1. list_buckets: List all buckets in your Akave storage
  2. list_objects: List objects in a bucket with optional prefix filtering
  3. get_object: Read object contents from a bucket
  4. put_object: Write a new object to a bucket
  5. get_signed_url: Generate a signed URL for secure access to an object
  6. update_object: Update an existing object
  7. delete_object: Delete an object from a bucket
  8. copy_object: Copy an object to another location
  9. create_bucket: Create a new bucket
  10. delete_bucket: Delete a bucket
  11. get_bucket_location: Get the region/location of a bucket
  12. list_object_versions: List all versions of objects (if versioning enabled)

Example Usage

Listing Buckets

# The AI model will automatically use the list_buckets tool
List all my buckets

Reading a File

# The AI model will use the get_object tool
Read the file 'example.md' from bucket 'my-bucket'

Uploading a File

# The AI model will use the put_object tool
Upload the content 'Hello World' to 'greeting.txt' in bucket 'my-bucket'

Troubleshooting

Common Issues

  1. Connection Refused

    • Ensure your Akave credentials are correct in the MCP configuration
    • Check if the endpoint URL is accessible
    • Verify your network connection
  2. File Reading Issues

    • For markdown files, ensure proper encoding
    • For binary files, use appropriate tools
    • Check file permissions
  3. Local LLM Issues

    • Ensure Ollama is running
    • Verify model compatibility
    • Check MCPHost configuration
    • Use --debug flag for detailed logs
  4. Claude Desktop Issues

    • Check logs at:
      • macOS: ~/Library/Logs/Claude/mcp*.log
      • Windows: %APPDATA%\Claude\logs\mcp*.log
    • Ensure Node.js is installed globally
    • Verify the configuration file syntax
    • Try restarting Claude Desktop

Contributing

Contributions are welcome! Please feel free to submit an issue or a pull request.

Support

For issues and feature requests, please create an issue in the GitHub repository.

Alternatives

Related Skills

Browse all skills
google-gemini-file-search

Build document Q&A and searchable knowledge bases with Google Gemini File Search - fully managed RAG with automatic chunking, embeddings, and citations. Upload 100+ file formats (PDF, Word, Excel, code), configure semantic search, and query with natural language.Use when: building document Q&A systems, creating searchable knowledge bases, implementing semantic search without managing embeddings, indexing large document collections (100+ formats), or troubleshooting document immutability errors (delete+re-upload required), storage quota issues (3x input size for embeddings), chunking configuration (500 tokens/chunk recommended), metadata limits (20 key-value pairs max), indexing cost surprises ($0.15/1M tokens one-time), operation polling timeouts (wait for done: true), force delete errors, or model compatibility (Gemini 2.5 Pro/Flash only).

6
prometheus-configuration

Set up Prometheus for comprehensive metric collection, storage, and monitoring of infrastructure and applications. Use when implementing metrics collection, setting up monitoring infrastructure, or configuring alerting systems.

4
email-systems

Email has the highest ROI of any marketing channel. $36 for every $1 spent. Yet most startups treat it as an afterthought - bulk blasts, no personalization, landing in spam folders. This skill covers transactional email that works, marketing automation that converts, deliverability that reaches inboxes, and the infrastructure decisions that scale. Use when: keywords, file_patterns, code_patterns.

4
file-uploads

Expert at handling file uploads and cloud storage. Covers S3, Cloudflare R2, presigned URLs, multipart uploads, and image optimization. Knows how to handle large files without blocking. Use when: file upload, S3, R2, presigned URL, multipart.

3
feishu-drive

Feishu cloud storage file management. Activate when user mentions cloud space, folders, drive.

2
box-automation

Automate Box cloud storage operations including file upload/download, search, folder management, sharing, collaborations, and metadata queries via Rube MCP (Composio). Always search tools first for current schemas.

2