Portkey MCP Server

list_workspaces

Retrieve all workspaces in your Portkey organization, including their configurations and metadata

Input Schema

NameRequiredDescriptionDefault
current_pageNoPage number to retrieve when results are paginated
page_sizeNoNumber of workspaces to return per page (default varies by endpoint)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "current_page": { "description": "Page number to retrieve when results are paginated", "exclusiveMinimum": 0, "type": "number" }, "page_size": { "description": "Number of workspaces to return per page (default varies by endpoint)", "exclusiveMinimum": 0, "type": "number" } }, "type": "object" }