We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/activepieces/activepieces'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { test, expect } from '../../../fixtures';
test.describe('Authentication - Sign Up', () => {
test('should successfully sign up with valid data and redirect to flows page', async ({ page, authenticationPage, flowsPage }) => {
test.setTimeout(120000);
await authenticationPage.signUp();
await flowsPage.waitFor();
// Verify we're not on the signup page anymore (successful signup)
const currentUrl = page.url();
expect(currentUrl).not.toContain('/sign-up');
});
});