We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DeamonDev888/discord-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•1.45 kB
/**
* 🛠️ UTILS - Index
* ================
* Export tous les utilitaires partagés.
*
* NOTE: Ce fichier est temporairement commenté car les modules référencés
* n'existent pas encore dans la nouvelle structure du projet.
*/
// Constantes (EMBED_TEMPLATES n'existe pas dans embeds.ts)
// export { EMBED_TEMPLATES } from '../embeds';
// Helpers (formatDuration est défini dans polls.ts qui n'existe pas encore)
// Types - les exports spécifiques n'existent pas encore
// import type { z } from 'zod';
// export type SendMessageParams = z.infer<typeof import('../messages').SendMessageSchema>;
// export type EditMessageParams = z.infer<typeof import('../messages').EditMessageSchema>;
// export type DeleteMessageParams = z.infer<typeof import('../messages').DeleteMessageSchema>;
// export type ReadMessagesParams = z.infer<typeof import('../messages').ReadMessagesSchema>;
// export type AddReactionParams = z.infer<typeof import('../messages').AddReactionSchema>;
// export type ListMembersParams = z.infer<typeof import('../members').ListMembersSchema>;
// export type GetUserInfoParams = z.infer<typeof import('../members').GetUserInfoSchema>;
// export type GetServerInfoParams = z.infer<typeof import('../members').GetServerInfoSchema>;
// Note: FileUploadParams, CreateWebhookParams, ListWebhooksParams, SendWebhookParams n'existent pas encore
// Ils seront ajoutés quand les fichiers correspondants seront créés