Eyevinn Open Source Cloud MCP Server

Official

osc_create_bucket

Create an S3 compatible bucket in Eyevinn Open Source Cloud

Input Schema

NameRequiredDescriptionDefault
nameYesName of the bucket

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "name": { "description": "Name of the bucket", "pattern": "^[a-z0-9]+$", "type": "string" } }, "required": [ "name" ], "type": "object" }