> ## Documentation Index
> Fetch the complete documentation index at: https://morphik.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# create_app

> Create a cloud app and return its authenticated URI

<Tabs>
  <Tab title="Sync">
    ```python theme={null}
    def create_app(
        name: str,
    ) -> Dict[str, str]
    ```
  </Tab>

  <Tab title="Async">
    ```python theme={null}
    async def create_app(
        name: str,
    ) -> Dict[str, str]
    ```
  </Tab>
</Tabs>

## Parameters

* `name` (str): App display name

## Returns

* `Dict[str, str]`: Response containing the authenticated URI and app metadata

## Examples

<Tabs>
  <Tab title="Sync">
    ```python theme={null}
    from morphik import Morphik

    db = Morphik()
    resp = db.create_app(name="demo")
    print(resp)
    ```
  </Tab>

  <Tab title="Async">
    ```python theme={null}
    from morphik import AsyncMorphik

    async with AsyncMorphik() as db:
        resp = await db.create_app(name="demo")
        print(resp)
    ```
  </Tab>
</Tabs>

## Notes

* `generate_cloud_uri` is a deprecated alias for this method.
* The SDK only accepts `name` for app creation.
