Skip to Content
The Makinari API repo now includes an MCP Server — connect your AI models directly. View on GitHub →
MCP ServerToolsCreate Project

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

ParameterTypeDescription
namestringThe name of the new project/site (required)
domainstringThe 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