We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/j0hanz/fs-context-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { z } from 'zod';
import packageJsonRaw from '../package.json' with { type: 'json' };
const PkgInfoSchema = z.object({
name: z.string(),
version: z.string(),
description: z.string().optional(),
homepage: z.string().optional(),
});
export const pkgInfo = PkgInfoSchema.parse(packageJsonRaw);