Create Project
Create a new project (site) for the user. A project in Makinari corresponds to a site structure and is the container for all assets, leads, tasks, and configurations.
Input Schema
| Parameter | Type | Description |
|---|---|---|
| name | string | The name of the new project/site (required) |
| domain | string | The domain for the new project/site (optional) |
REST Endpoint
Currently this tool runs internally in the Assistant mode or via MCP connection.
Example execution via MCP:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "create_project",
"arguments": {
"name": "My New Project",
"domain": "my-new-project.com"
}
}
}Response:
{
"success": true,
"message": "Project 'My New Project' created successfully with ID 1234abcd-...",
"project": {
"id": "1234abcd-...",
"name": "My New Project",
"domain": "my-new-project.com",
"created_at": "...",
"updated_at": "..."
}
}Last updated on