We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/skills-mcp/skills-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { z } from 'zod'
const MAX_NAME_LENGTH = 64
const MAX_DESCRIPTION_LENGTH = 1024
const skillMetadataSchema = z.object({
name: z.string().max(MAX_NAME_LENGTH),
description: z.string().max(MAX_DESCRIPTION_LENGTH),
})
/**
* Skill metadata from YAML frontmatter
*/
export type SkillMetadata = z.infer<typeof skillMetadataSchema>
export const parsedSkillFileSchema = z.object({
data: skillMetadataSchema,
content: z.string(),
})
export type ParsedSkillFile = z.infer<typeof parsedSkillFileSchema>