We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/FVEFWFE/attio-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
lazy-client.ts•588 B
/**
* Enhanced lazy client - no circular dependencies
* Uses direct import since circular dependency has been resolved
*/
import { AxiosInstance } from 'axios';
import { getAttioClient } from './attio-client.js';
export function getLazyAttioClient(): AxiosInstance {
// Direct call since circular dependency is now resolved
return getAttioClient();
}
export function setGlobalContext(_context: Record<string, unknown>): void {
// Intentionally unused for now (reserved for future use)
}
export function clearClientCache(): void {
// No-op for now - can be enhanced later
}