Skip to main content
Glama

Eyevinn Open Source Cloud MCP Server

by EyevinnOSC
schemas.ts1.15 kB
import { z } from 'zod'; export const UploadFileSchema = z.object({ name: z .string() .regex(/^[a-z0-9]+$/) .describe('Name of the minio instance'), bucket: z.string().describe('Name of the bucket'), objectKey: z.string().describe('Object key for the uploaded file'), file: z.string().describe('File to upload') }); export type UploadFileSchema = z.infer<typeof UploadFileSchema>; export const ListFilesSchema = z.object({ name: z .string() .regex(/^[a-z0-9]+$/) .describe('Name of the minio instance'), bucket: z.string().describe('Name of the bucket') }); export type ListFilesSchema = z.infer<typeof ListFilesSchema>; export const CreateBucketSchema = z.object({ name: z .string() .regex(/^[a-z0-9]+$/) .describe('Name of the minio instance'), bucket: z.string().describe('Name of the bucket to create') }); export type CreateBucketSchema = z.infer<typeof CreateBucketSchema>; export const ListBucketsSchema = z.object({ name: z .string() .regex(/^[a-z0-9]+$/) .describe('Name of the minio instance') }); export type ListBucketsSchema = z.infer<typeof ListBucketsSchema>;

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/EyevinnOSC/mcp-server'

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