Skip to main content
Glama

mcp-server-cloudflare

Official
by cloudflare
schema.ts975 B
import z from 'zod' export type ExecParams = z.infer<typeof ExecParams> export const ExecParams = z.object({ args: z.string(), timeout: z.number().optional().describe('Timeout in milliseconds'), streamStderr: z.boolean().default(true), }) export type FileWrite = z.infer<typeof FileWrite> export const FileWrite = z.object({ path: z.string(), text: z.string().describe('Full text content of the file you want to write.'), }) export type FilePathParam = z.infer<typeof FilePathParam> export const FilePathParam = z.object({ path: z.string(), }) export type FileList = z.infer<typeof FileList> export const FileList = z.object({ resources: z .object({ uri: z.string(), name: z.string(), description: z.string().optional(), mimeType: z.string().optional(), }) .array(), }) export type FilesContextSchema = z.infer<typeof FilesContextSchema> export const FilesContextSchema = z.object({ files: z .object({ uri: z.string(), }) .array(), })

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cloudflare/mcp-server-cloudflare'

If you have feedback or need assistance with the MCP directory API, please join our Discord server