Portkey MCP Server

get_workspace

Retrieve detailed information about a specific workspace, including its configuration, metadata, and user access details

Input Schema

NameRequiredDescriptionDefault
workspace_idYesThe unique identifier of the workspace to retrieve. This can be found in the workspace's URL or from the list_workspaces tool response

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "workspace_id": { "description": "The unique identifier of the workspace to retrieve. This can be found in the workspace's URL or from the list_workspaces tool response", "type": "string" } }, "required": [ "workspace_id" ], "type": "object" }