# Create Pull Request Review

> Create a review on a pull request

- Skill: `xiaobai1017/create-pull-request-review` (Agent Skill)
- Install (CLI): `npx skillmds@latest add xiaobai1017/create-pull-request-review`
- Raw SKILL.md: https://api.skillmd.com/api/skills/xiaobai1017/create-pull-request-review/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: xiaobai1017 (https://skillmd.com/u/xiaobai1017)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/xiaobai1017/create-pull-request-review

---


# create_pull_request_review

Create a review on a pull request

## Purpose

This skill provides access to the MCP tool `create_pull_request_review`. It allows you to create a review on a pull request.

## Parameters

The tool accepts the following parameters:

### `owner`
**Required**
- **Type**: `string`
- **Description**: Repository owner (username or organization)

### `repo`
**Required**
- **Type**: `string`
- **Description**: Repository name

### `pull_number`
**Required**
- **Type**: `number`
- **Description**: Pull request number

### `commit_id`
*Optional*
- **Type**: `string`
- **Description**: The SHA of the commit that needs a review

### `body`
**Required**
- **Type**: `string`
- **Description**: The body text of the review

### `event`
**Required**
- **Type**: `string`
- **Description**: The review action to perform
- **Allowed values**: APPROVE, REQUEST_CHANGES, COMMENT

### `comments`
*Optional*
- **Type**: `array`
- **Description**: Comments to post as part of the review (specify either position or line, not both)


## Usage Instructions

To use this tool:

1. **Prepare the parameters** according to the schema above
2. **Invoke the MCP tool** `create_pull_request_review` with the prepared parameters
3. **Process the result** returned by the tool

## Example

```json
{
  "owner": "example_value",
  "repo": "example_value",
  "pull_number": 123,
  "commit_id": "example_value",
  "body": "example_value",
  "event": "example_value",
  "comments": {}
}
```


## Notes

- This skill requires an active MCP connection to the server providing the `create_pull_request_review` tool
- Ensure the MCP server is properly configured and running before attempting to use this tool
- Review the parameter requirements carefully to avoid errors
