We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/firehydrant/firehydrant-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
security.ts•262 B
/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
import * as z from "zod";
export type Security = { api_key: string };
export const Security$zodSchema: z.ZodType<Security> = z.object({
api_key: z.string().describe("API Key"),
});