Skip to main content
Glama
server.test.ts.disabled837 B
import { describe, it, expect } from '@jest/globals'; import * as fs from 'fs'; import * as path from 'path'; describe('Server Configuration', () => { it('should have required configuration files', () => { const configFiles = [ 'tsconfig.json', 'package.json' ]; configFiles.forEach(file => { const filePath = path.resolve(__dirname, '..', file); expect(fs.existsSync(filePath)).toBe(true); }); }); it('should validate package.json structure', () => { const packagePath = path.resolve(__dirname, '..', 'package.json'); const packageJson = JSON.parse(fs.readFileSync(packagePath, 'utf8')); expect(packageJson.name).toBe('mcp-for-microsoft-fabric-analytics'); expect(packageJson.dependencies).toBeDefined(); expect(packageJson.scripts).toBeDefined(); }); });

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/santhoshravindran7/Fabric-Analytics-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server