ethora-app-create
Create a new app on the Ethora MCP Server by specifying a display name, enabling app management and integration with the Ethora platform for user authentication and registration.
Instructions
Create a new app for the logged-in user.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
displayName | Yes | display name for app |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"displayName": {
"description": "display name for app",
"type": "string"
}
},
"required": [
"displayName"
],
"type": "object"
}