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•400 B
/**
* Shared utilities and types for XHS MCP Server
*/
// Configuration
export * from './config.js';
// Cookie management
export * from './cookies.js';
// Logging
export * from './logger.js';
// Error classes
export * from './errors.js';
// Type definitions
export * from './types.js';
// Common utilities
export * from './utils.js';
// Base service class
export * from './base.service.js';