We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/get-convex/convex-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { z } from "zod";
import { looseObject } from "./utils.js";
// TODO share some of these types, to distinguish between encodedComponentDefinitionPaths etc.
export const componentDefinitionPath = z.string();
export type ComponentDefinitionPath = z.infer<typeof componentDefinitionPath>;
export const componentPath = z.string();
export type ComponentPath = z.infer<typeof componentPath>;
export const canonicalizedModulePath = z.string();
export type CanonicalizedModulePath = z.infer<typeof canonicalizedModulePath>;
export const componentFunctionPath = looseObject({
component: z.string(),
udfPath: z.string(),
});
export type ComponentFunctionPath = z.infer<typeof componentFunctionPath>;