Eyevinn Open Source Cloud MCP Server

Official

osc_create_db

Create a new database instance in Eyevinn Open Source Cloud

Input Schema

NameRequiredDescriptionDefault
nameYesName of the database
typeYesType of database [SQL, NoSQL, MemoryDb]

Input Schema (JSON Schema)

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