We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Algovate/xhs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•445 B
/**
* Shared utilities, types, and services for XHS MCP Server
*/
// Configuration and types
export * from './config';
export * from './types';
// Utilities
export * from './utils';
export * from './xhs.utils';
export * from './cookies';
export * from './image-downloader';
export * from './title-validator';
// Error handling and logging
export * from './errors';
export * from './logger';
// Base service
export * from './base.service';