Skip to main content

Create Project

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

WRITEmanus.create_project
  • Contract tier: agent_ready
  • Risk: write
  • Catalog version: manus-2026.07.12.2
  • Descriptor hash: 27d3557c947bd2a3f1a153968f7991b00ae2009bdb50fb1beb73ca2ff05ac7b1

Use this Manus write tool when you need to create a manus project with shared instructions. requires confirmation. It contacts the configured Manus API v2 POST /v2/project.create endpoint and requires a request-scoped x-manus-api-key. Creates shared instructions container; dry-run and confirm required. It is dry-run by default and requires confirm=true after approval before the provider write executes. The result is a compact, secret-redacted object and never includes the Portal grant or provider credential.

Request Body

{
"jsonrpc": "2.0",
"id": "manus-create-project-example",
"method": "tools/call",
"params": {
"name": "manus.create_project",
"arguments": {
"name": "name_example",
"confirm": false,
"dry_run": false,
"instruction": ""
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Human-readable name for the new Manus project."
},
"confirm": {
"type": "boolean",
"default": false,
"description": "Set true only after reviewing the dry-run plan and obtaining required approval."
},
"dry_run": {
"type": "boolean",
"default": true,
"description": "Keep true to return a secret-safe execution preview without contacting the write endpoint."
},
"instruction": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional shared instruction applied to work created inside the Manus project."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the local or provider operation completed successfully."
},
"data": {
"description": "Bounded provider or local result data."
},
"error": {
"description": "Secret-safe provider or validation error details."
},
"dry_run": {
"type": "boolean",
"description": "Whether the result is an execution preview rather than a provider mutation."
},
"message": {
"type": "string",
"description": "Human-readable status or recovery guidance."
},
"http_status": {
"type": "integer",
"description": "Manus provider HTTP status when an external endpoint was contacted."
},
"next_action": {
"type": "string",
"description": "Recommended next agent action when another step is useful."
},
"confirmation_required": {
"type": "boolean",
"description": "Whether approval is required before a write can execute."
}
},
"description": "Secret-safe Manus MCP operation result.",
"additionalProperties": true
}

Code Examples

curl -X POST 'https://portal.madpanda3d.com/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "manus-create-project-example",
"method": "tools/call",
"params": {
"name": "manus.create_project",
"arguments": {
"name": "name_example",
"confirm": false,
"dry_run": false,
"instruction": ""
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool manus.create_project executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}