redmine_create_project
Create a new Redmine project by specifying a name and unique identifier, with options to set description, visibility, parent project, and enable modules or trackers.
Instructions
Create a new project.
Args:
name: required project display name.
identifier: required URL slug (lowercase, hyphens, no spaces).
description: optional project description.
homepage: optional homepage URL.
is_public: whether the project is publicly visible (default True).
parent_id: optional parent project id (0 for top-level).
inherit_members: if True, inherit members from parent.
tracker_ids: optional list of tracker ids to enable.
enabled_module_names: optional list of modules (e.g.
["issue_tracking", "wiki", "boards"]).
Honors REDMINE_MCP_READ_ONLY.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| homepage | No | ||
| is_public | No | ||
| parent_id | No | ||
| identifier | Yes | ||
| description | No | ||
| tracker_ids | No | ||
| inherit_members | No | ||
| enabled_module_names | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |