We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aymericzip/intlayer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
export.ts•1.55 KiB
// Routes
// Controllers types
export type * from '@controllers/ai.controller';
export type * from '@controllers/dictionary.controller';
export type * from '@controllers/eventListener.controller';
export type * from '@controllers/newsletter.controller';
export type * from '@controllers/oAuth2.controller';
export type * from '@controllers/organization.controller';
export type * from '@controllers/project.controller';
export type * from '@controllers/projectAccessKey.controller';
export type * from '@controllers/search.controller';
export type * from '@controllers/stripe.controller';
export type * from '@controllers/tag.controller';
export type * from '@controllers/user.controller';
export { getAiRoutes } from '@routes/ai.routes';
export { getDictionaryRoutes } from '@routes/dictionary.routes';
export { getNewsletterRoutes } from '@routes/newsletter.routes';
export { getOrganizationRoutes } from '@routes/organization.routes';
export { getProjectRoutes } from '@routes/project.routes';
export { getUserRoutes } from '@routes/user.routes';
// Utils
export * from '@utils/auth/getAuth';
export * from '@utils/httpStatusCodes';
export * from '@utils/responseData';
// Objects types
export type * from '@/types/dictionary.types';
export type * from '@/types/discussion.types';
export type * from '@/types/oAuth2.types';
export type * from '@/types/organization.types';
export type * from '@/types/plan.types';
export type * from '@/types/project.types';
export type * from '@/types/session.types';
export type * from '@/types/tag.types';
export type * from '@/types/user.types';