Skip to main content
Glama
metadataApi.ts2.38 kB
import { makeApi, makeEndpoint, ZodiosEndpointDefinitions } from '@zodios/core'; import { z } from 'zod'; export const graphqlResponse = z.object({ data: z.object({ publishedDatasources: z.array( z.object({ name: z.string().nullable(), description: z.string().nullable(), owner: z.object({ name: z.string().nullable(), }), fields: z.array( z.object({ name: z.string(), isHidden: z.boolean().nullable(), description: z.string().nullable(), descriptionInherited: z .array( z .object({ attribute: z.string(), value: z.string().nullable(), }) .nullable(), ) .nullable(), fullyQualifiedName: z.string(), __typename: z.string(), // Common field properties (optional since they depend on field type) dataCategory: z.string().nullish(), role: z.string().nullish(), dataType: z.string().nullish(), defaultFormat: z.string().nullish(), semanticRole: z.string().nullish(), aggregation: z.string().nullish(), aggregationParam: z.string().nullish(), // CalculatedField specific properties formula: z.string().nullish(), isAutoGenerated: z.boolean().nullish(), hasUserReference: z.boolean().nullish(), // BinField specific properties binSize: z.number().nullish(), // GroupField specific properties hasOther: z.boolean().nullish(), // CombinedSetField specific properties delimiter: z.string().nullish(), combinationType: z.string().nullish(), }), ), }), ), }), }); export type GraphQLResponse = z.infer<typeof graphqlResponse>; const graphqlEndpoint = makeEndpoint({ method: 'post', path: '/graphql', alias: 'graphql', response: graphqlResponse, parameters: [ { name: 'query', type: 'Body', schema: z.object({ query: z.string(), }), }, ], }); const metadataApi = makeApi([graphqlEndpoint]); export const metadataApis = [...metadataApi] as const satisfies ZodiosEndpointDefinitions;

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/datalabs89/tableau-mcp'

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