Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
Makefile1.52 kB
# Define the root directory (adjust this path as needed) ROOT_DIR := $(shell git rev-parse --show-toplevel) # List of notebook files and their destination paths NOTEBOOKS := \ tutorials/quickstarts/evals_quickstart.ipynb:docs/quickstart/evals.md \ tutorials/quickstarts/tracing_quickstart_openai.ipynb:docs/tracing/llm-traces-1.md \ tutorials/quickstarts/evaluating_traces_quickstart.ipynb:docs/evaluation/how-to-evals/evaluating-phoenix-traces.md \ tutorials/prompts/prompt-optimization.ipynb:docs/prompt-engineering/use-cases-prompts/prompt-optimization.md \ tutorials/prompts/few_shot_prompting.ipynb:docs/prompt-engineering/use-cases-prompts/few-shot-prompting.md \ tutorials/prompts/react_prompting.ipynb:docs/prompt-engineering/use-cases-prompts/react-prompting.md \ tutorials/prompts/chain_of_thought_prompting.ipynb:docs/prompt-engineering/use-cases-prompts/chain-of-thought-prompting.md # Default target all: convert_notebooks # Convert notebooks to markdown and move to destination convert_notebooks: @for pair in $(NOTEBOOKS); do \ file=$${pair%%:*}; \ dest=$${pair#*:}; \ echo "Converting $$file to Markdown..."; \ jupyter nbconvert --to markdown "$(ROOT_DIR)/$$file"; \ mdfile=$${file%.ipynb}.md; \ echo "Moving $$mdfile to $$dest"; \ mv "$(ROOT_DIR)/$$mdfile" "$(ROOT_DIR)/$$dest"; \ done # Clean up generated files clean: @for pair in $(NOTEBOOKS); do \ dest=$${pair#*:}; \ echo "Removing $$dest"; \ rm -f "$(ROOT_DIR)/$$dest"; \ done .PHONY: all convert_notebooks clean

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Arize-ai/phoenix'

If you have feedback or need assistance with the MCP directory API, please join our Discord server