We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ivo-toby/mcp-picnic'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { z } from "zod"
import dotenv from "dotenv"
dotenv.config()
const configSchema = z.object({
PICNIC_USERNAME: z.string(),
PICNIC_PASSWORD: z.string(),
PICNIC_COUNTRY_CODE: z.enum(["NL", "DE"]).default("NL"),
ENABLE_HTTP_SERVER: z
.string()
.transform((val) => val === "true")
.default("false"),
HTTP_PORT: z
.string()
.transform((val) => parseInt(val, 10))
.default("3000"),
HTTP_HOST: z.string().default("localhost"),
})
export const config = configSchema.parse(process.env)