terraform-cloud-mcp

by severity1
Verified

list_organizations

Retrieve and filter organizations accessible to the user on Terraform Cloud. Use pagination and search options to find specific entries by name or email.

Instructions

List organizations with filtering options

Retrieves a paginated list of organizations the current user has access to, with options to search by name or email address. API endpoint: GET /organizations Args: page_number: Page number to fetch (default: 1) page_size: Number of results per page (default: 20) query: Search query to filter by name and email query_email: Search query to filter by email only query_name: Search query to filter by name only Returns: List of organizations with metadata and pagination information See: docs/tools/organization_tools.md for usage examples

Input Schema

NameRequiredDescriptionDefault
page_numberNo
page_sizeNo
queryNo
query_emailNo
query_nameNo

Input Schema (JSON Schema)

{ "properties": { "page_number": { "default": 1, "title": "Page Number", "type": "integer" }, "page_size": { "default": 20, "title": "Page Size", "type": "integer" }, "query": { "default": "", "title": "Query", "type": "string" }, "query_email": { "default": "", "title": "Query Email", "type": "string" }, "query_name": { "default": "", "title": "Query Name", "type": "string" } }, "title": "list_organizationsArguments", "type": "object" }
ID: iukijjkm1e