# Create Stage

`Create_Stage` creates a new GovTribe stage inside an existing pipeline and returns the created stage resource as JSON text.

## Output Contract

* Top-level keys:
  * `govtribe_id`
  * `govtribe_type`
  * `govtribe_url`
  * `name`
  * `description`
  * `type`
  * `created_at`
  * `updated_at`
  * `owner`
  * `creator`
  * `pipeline`
* Row keys:
  * `n/a`
* Relationship retrieval map:
  * `creator`
    * `resource_type`: `user`
    * `tool`: `Search_Users`
    * `filter`: `user_ids`
    * `nested_keys`: `govtribe_id`, `govtribe_type`, `name`, `email`
  * `owner`
    * `resource_type`: `user`
    * `tool`: `Search_Users`
    * `filter`: `user_ids`
    * `nested_keys`: `govtribe_id`, `govtribe_type`, `name`, `email`
  * `pipeline`
    * `resource_type`: `pipeline`
    * `tool`: `Search_Pipelines`
    * `filter`: `creator_ids`
    * `nested_keys`: `govtribe_id`, `govtribe_type`, `govtribe_url`, `name`

## Usage Patterns

Pattern A: Create a new stage with required fields only. Tool: `Update_Pipeline`

```json
{
  "pipeline_id": "<PIPELINE_ID>",
  "name": "Qualification"
}
```

Pattern B: Create a stage with a description for team guidance. Tool: `Create_Stage`

```json
{
  "pipeline_id": "<PIPELINE_ID>",
  "name": "Pink Team Review",
  "description": "Internal technical and management review before final pricing lock."
}
```

Pattern C: Insert a stage at a specific order index. Tool: `Create_Stage`

```json
{
  "pipeline_id": "<PIPELINE_ID>",
  "name": "Pricing Validation",
  "description": "Cross-check labor mix, indirects, and narrative consistency.",
  "index": 3
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.govtribe.com/user-guide/mcp/tools/create-stage.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
