We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rocklambros/nist-csf-2-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Minimal test to verify Jest infrastructure works
*/
import { describe, test, expect } from '@jest/globals';
describe('Minimal Test Suite', () => {
test('should pass basic JavaScript functionality', () => {
expect(1 + 1).toBe(2);
expect('hello').toBe('hello');
expect(true).toBe(true);
});
test('should handle async operations', async () => {
const promise = Promise.resolve('test');
const result = await promise;
expect(result).toBe('test');
});
test('should handle object operations', () => {
const obj = { a: 1, b: 2 };
expect(obj.a).toBe(1);
expect(Object.keys(obj)).toEqual(['a', 'b']);
});
});