Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
user-management.spec.ts1.27 kB
import { expect, test } from "@playwright/test"; import { randomUUID } from "crypto"; test.beforeEach(async ({ page }) => { page.goto(`/login`); await page.getByLabel("Email").fill("admin@localhost"); await page.getByLabel("Password").fill("admin123"); await page.getByRole("button", { name: "Log In", exact: true }).click(); await page.waitForURL("**/projects"); }); test("can create a user", async ({ page }) => { await page.goto("/settings/general"); await page.waitForURL("**/settings/general"); await page.getByRole("button", { name: "Add User" }).click(); const email = `member-${randomUUID()}@localhost.com`; // Add the user await page.getByLabel("Email").fill(email); await page.getByLabel("Username").fill(email); await page.getByLabel("Password", { exact: true }).fill("member123"); await page.getByLabel("Confirm Password").fill("member123"); await page.getByRole("dialog").getByLabel("member", { exact: true }).click(); await page .getByRole("dialog") .getByRole("option", { name: "member" }) .click(); await page .getByRole("dialog") .getByRole("button", { name: "Add User" }) .click(); // Check if the user is created await expect(page.getByRole("cell", { name: email })).toBeVisible(); });

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