Portkey MCP Server

get_config

Retrieve detailed information about a specific configuration, including cache settings, retry policies, and routing strategy

Input Schema

NameRequiredDescriptionDefault
slugYesThe unique identifier (slug) of the configuration to retrieve. This can be found in the configuration's URL or from the list_configs tool response

Input Schema (JSON Schema)

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