We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/deleonio/public-ui-kolibri'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { expect, test } from '@playwright/test';
test.describe('KolInputText Smart-Button', () => {
test.beforeEach(async ({ page }) => {
await page.goto('#/input-text/smart-button?hideMenus');
});
test('Smart-Button clicked', async ({ page }) => {
const kolButton = page.locator('.kol-input-container__smart-button');
await expect(kolButton).toHaveCount(2);
await kolButton.first().getByRole('button').click();
const kolToast = page.locator('.kol-toast-item');
await expect(kolToast).toHaveCount(1);
});
});