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

# Create a Project

## Description

The `get_project()` and `create_project()` functions fetch an existing project or create a new one.

## Syntax

Use the `get_project()` method to get the default `mindsdb` project:

```python theme={null}
project = server.get_project()
```

Use the `get_project()` method to get other project:

```python theme={null}
project = server.get_project('project_name')
```

Use the `create_project()` method to create a new project:

```python theme={null}
project = server.create_project('project_name')
```
