@arizeai/phoenix-mcp

Official

list-prompts

Retrieve a list of all available prompts, including their IDs, names, and descriptions, to manage input templates for LLM interactions effectively. Ideal for organizing and selecting prompt templates with ease.

Instructions

Get a list of all the prompts.

Prompts (templates, prompt templates) are versioned templates for input messages to an LLM. Each prompt includes both the input messages, but also the model and invocation parameters to use when generating outputs.

Returns a list of prompt objects with their IDs, names, and descriptions.

Example usage: List all available prompts

Expected return: Array of prompt objects with metadata. Example: [{ "name": "article-summarizer", "description": "Summarizes an article into concise bullet points", "source_prompt_id": null, "id": "promptid1234" }]

Input Schema

NameRequiredDescriptionDefault
limitNo

Input Schema (JSON Schema)

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