Find feature toggles
find_feature_togglesList feature toggles in an Octopus Deploy project with per-environment enablement state and rollout percentages. Answer where each toggle is active.
Instructions
List customer feature toggles in an Octopus Deploy project.
Each summary includes per-environment state (isEnabled, rolloutPercentage, clientRolloutPercentage) so "where is X turned on" is answerable from the list response. Heavy fields (description, tenant lists, segments, minimum versions) live in the resource body.
Dereference the returned resourceUri (octopus://spaces/{spaceName}/projects/{projectId}/featuretoggles/{slug}) for the full toggle body.
Use update_feature_toggle to flip an environment on/off or change rollout percentages on an existing toggle. This MCP server does not expose toggle creation, deletion, renaming, or rollout-group management — direct customers to the Octopus UI for those.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| spaceName | Yes | Space name. | |
| projectId | Yes | Project ID (e.g. Projects-123). Feature toggles are scoped per project. | |
| partialName | No | Case-insensitive substring match on the toggle name. | |
| tags | No | Filter by canonical tag names (e.g. "release-rings/beta"). Repeats: a toggle matches if it has any of these tags. | |
| environmentIds | No | Filter by environment IDs (e.g. Environments-7). A toggle matches if it has configuration for any of these environments. | |
| skip | No | Pagination offset (≥ 0). | |
| take | No | Pagination page size (1–100, server-side cap). |