@arizeai/phoenix-mcp

Official

list-prompt-versions

Retrieve all versions of a specific prompt with pagination support, providing IDs, configurations, and template details for version management.

Instructions

Get a list of all versions for a specific prompt. Returns versions with pagination support.

Example usage: List all versions of a prompt named 'article-summarizer'

Expected return: Array of prompt version objects with IDs and configuration. Example: [ { "description": "Initial version", "model_provider": "OPENAI", "model_name": "gpt-3.5-turbo", "template": { "type": "chat", "messages": [ { "role": "system", "content": "You are an expert summarizer. Create clear, concise bullet points highlighting the key information." }, { "role": "user", "content": "Please summarize the following {{topic}} article:

{{article}}" } ] }, "template_type": "CHAT", "template_format": "MUSTACHE", "invocation_parameters": { "type": "openai", "openai": {} }, "id": "promptversionid1234" } ]

Input Schema

NameRequiredDescriptionDefault
limitNo
prompt_identifierYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "limit": { "default": 100, "maximum": 100, "minimum": 1, "type": "number" }, "prompt_identifier": { "type": "string" } }, "required": [ "prompt_identifier" ], "type": "object" }
ID: ee9d3exkn8