# Delete Pipeline

`Delete_Pipeline` deletes a GovTribe pipeline by ID and removes its associated pursuits as part of the same action path.

## Output Contract

* Top-level keys:
  * `response`
* Row keys:
  * `n/a`
* Relationship retrieval map:
  * `pipeline_id` (input context)
    * `tool`: `Search_Pipelines`
    * `filter`: `pipeline_ids`
    * `fallback`: after deletion this lookup may return zero rows; use previously captured pipeline details for history.
  * `pipeline_id` -> linked pursuits (pre-delete context)
    * `tool`: `Search_Pursuits`
    * `filter`: `pipeline_ids`
    * `fallback`: after deletion, related pursuits are expected to be removed and may no longer be retrievable.

## Usage Patterns

Pattern A: Delete a known pipeline directly. Tool: `Delete_Pipeline`

```json
{
  "pipeline_id": "<PIPELINE_ID>"
}
```


---

# 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/delete-pipeline.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.
