GitHub Projects MCP Server

copy-project

Copy a GitHub Project

Input Schema

NameRequiredDescriptionDefault
includeFieldsNoWhether to include fields in the copied project
includeItemsNoWhether to include items in the copied project
ownerIdYesNew owner ID
projectIdYesSource GitHub Project ID to copy
titleNoTitle for the new project

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "includeFields": { "default": true, "description": "Whether to include fields in the copied project", "type": "boolean" }, "includeItems": { "default": false, "description": "Whether to include items in the copied project", "type": "boolean" }, "ownerId": { "description": "New owner ID", "type": "string" }, "projectId": { "description": "Source GitHub Project ID to copy", "type": "string" }, "title": { "description": "Title for the new project", "type": "string" } }, "required": [ "projectId", "ownerId" ], "type": "object" }