Skip to main content
Glama
akave-ai

Akave MCP Server

by akave-ai

create_bucket

Create a new storage bucket in Akave's S3-compatible storage system to organize and manage your data objects.

Instructions

Create a new bucket

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bucketYesBucket name

Implementation Reference

  • Core handler function that creates an S3 bucket using CreateBucketCommand.
    async createBucket(bucket: string) {
      const command = new CreateBucketCommand({
        Bucket: bucket,
      });
      return await this.client.send(command);
    }
  • src/server.ts:253-265 (registration)
    MCP tool registration for 'create_bucket', including input schema and thin wrapper handler that delegates to S3Client.createBucket.
    this.server.tool(
      "create_bucket",
      "Create a new bucket",
      {
        bucket: z.string().describe("Bucket name"),
      },
      async ({ bucket }) => {
        await this.s3Client.createBucket(bucket);
        return {
          content: [{ type: "text", text: JSON.stringify({ success: true }) }],
        };
      }
    );
  • Zod input schema defining the 'bucket' parameter for the create_bucket tool.
    {
      bucket: z.string().describe("Bucket name"),
    },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/akave-ai/akave-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server