fork_repository
Creates a fork of a GitHub repository using specified parameters, such as owner, repo, and optional organization. Facilitates repository duplication for collaboration or experimentation.
Instructions
Fork an existing GitHub repository.
Args:
params: Dictionary with fork parameters
- owner: Repository owner (username or organization)
- repo: Repository name
- organization: Organization to fork to (optional)
Returns:
MCP response with forked repository details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"properties": {
"params": {
"title": "Params",
"type": "object"
}
},
"required": [
"params"
],
"title": "fork_repositoryArguments",
"type": "object"
}