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
import type { z } from "zod";
/**
* Simple utility to check if two types are exactly equivalent
*/
export type AssertEqual<T, U> =
(<V>() => V extends T ? 1 : 2) extends <V>() => V extends U ? 1 : 2
? true
: false;
/**
* Zod utility to check if a schema is defined correctly against a given type
*
* @see https://github.com/colinhacks/zod/issues/372#issuecomment-2445439772
*/
export const schemaMatches =
<T>() =>
<S extends z.ZodType<T, unknown>>(
schema: AssertEqual<S["_output"], T> extends true
? S
: S & {
"types do not match": {
expected: T;
received: S["_output"];
};
}
): S => {
return schema;
};