We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kj455/mcp-kibela'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { z } from 'zod'
const envSchema = z.object({
KIBELA_TEAM: z.string().min(1, 'KIBELA_TEAM is required'),
KIBELA_TOKEN: z.string().min(1, 'KIBELA_TOKEN is required'),
})
type Env = z.infer<typeof envSchema>
declare global {
namespace NodeJS {
interface ProcessEnv extends Env {}
}
}
export const env = envSchema.parse(process.env)