MCP server
by akave-ai
Akave Storage: Manage buckets, upload/download files, and generate signed URLs with automatic text cleaning on Akave's S
Integrates with Akave's S3-compatible storage platform to manage buckets, upload/download files, and generate secure access URLs through AI models.
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.
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.
MIT
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.
Read, analyze, and understand files in your project
Example
Summarize README, analyze code structure, find TODO comments across codebase
Navigate large codebases 5x faster, understand projects quickly
Create, move, rename, and organize files based on natural language instructions
Example
Organize downloads by file type, rename files following convention, batch process images
Save hours on manual file organization
Search files for patterns, extract data, find information across directories
Example
Find all config files with API keys, extract emails from documents, search logs for errors
Find information instantly instead of manual grep/find
Share your MCP server with the developer community
Akave Storage reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
According to our notes, Akave Storage benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
I recommend Akave Storage for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Akave Storage is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Akave Storage reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
I recommend Akave Storage for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We wired Akave Storage into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Akave Storage is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We evaluated Akave Storage against two servers with overlapping tools; this profile had the clearer scope statement.
Useful MCP listing: Akave Storage is the kind of server we cite when onboarding engineers to host + tool permissions.
showing 1-10 of 42
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.
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.
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"
}
}
}
}
Download and install Claude for Desktop (macOS or Windows)
Open Claude Desktop Settings:
This will create/update the configuration file at:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd 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"
}
}
}
}
Restart Claude Desktop
You should see a slider icon in the bottom left corner of the input box. Click it to see the available Akave tools.
go install github.com/mark3labs/mcphost@latest
# 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:mistralollama:qwen2.5ollama:llama2The server provides the following MCP tools:
list_buckets: List all buckets in your Akave storagelist_objects: List objects in a bucket with optional prefix filteringget_object: Read object contents from a bucketput_object: Write a new object to a bucketget_signed_url: Generate a signed URL for secure access to an objectupdate_object: Update an existing objectdelete_object: Delete an object from a bucketcopy_object: Copy an object to another locationcreate_bucket: Create a new bucketdelete_bucket: Delete a bucketget_bucket_location: Get the region/location of a bucketlist_object_versions: List all versions of objects (if versioning enabled)# The AI model will automatically use the list_buckets tool
List all my buckets
# The AI model will use the get_object tool
Read the file 'example.md' from bucket 'my-bucket'
# The AI model will use the put_object tool
Upload the content 'Hello World' to 'greeting.txt' in bucket 'my-bucket'
Connection Refused
File Reading Issues
Local LLM Issues
--debug flag for detailed logsClaude Desktop Issues
~/Library/Logs/Claude/mcp*.log%APPDATA%\Claude\logs\mcp*.logContributions are welcome! Please feel free to submit an issue or a pull request.
For issues and feature requests, please create an issue in the GitHub repository.
Generate boilerplate files, apply templates, create project structures
Example
Create React component with tests and styles, generate OpenAPI spec, scaffold new project
Eliminate repetitive file creation work
Prerequisites
Time Estimate
10-20 minutes including configuration
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
MCP server provides file I/O operations (read, write, search, metadata) as tools Claude can invoke with natural language instructions.
Protocols
Compatibility
✓ Use when
Use for code analysis, file organization, content search, template generation, and automating repetitive file operations. Best for local development workflows.
✗ Avoid when
Avoid for system-critical files, sensitive credentials, production environments, or when file integrity is paramount. Don't use on files you can't afford to lose.