We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/xydong-web/mcp-nexus'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import React from 'react';
import { renderToStaticMarkup } from 'react-dom/server';
import { describe, expect, it } from 'vitest';
import { UsagePage } from './UsagePage';
describe('UsagePage layout', () => {
it('renders a dedicated scroll container for the table', () => {
const html = renderToStaticMarkup(<UsagePage api={{} as any} />);
expect(html).toContain('usageTableScroller');
});
});