igniral_create_application
Create an empty application shell to manually build APIs step by step. After creation, add endpoints individually using the provided application ID.
Instructions
Creates an empty application shell (without endpoints). Use this when the user wants to manually build an application step by step, providing a specific name, description, and settings.
After creating the application, use igniral_create_dynamic_endpoint to add API endpoints one by one. Returns the applicationId needed for creating endpoints.
Do NOT use this after igniral_generate_schema_from_prompt — that tool already creates the application automatically.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the application (e.g., 'GymApp', 'Pet Store API') | |
| description | Yes | Description of what the application does | |
| version | No | API version (default: 'v1') | |
| subdomain | No | Custom subdomain for the API (lowercase, hyphens allowed). If not provided, one is generated automatically. | |
| aiGeneratedContext | No | AI-generated context/documentation for the application | |
| isPrivate | No | Whether the app is private (default: true). Private apps require authentication for all endpoints. Public apps can have some endpoints visible without auth. |