Skip to main content
Glama

Chat Context MCP

by aolshaun
test-playwright.js980 B
import { chromium } from 'playwright'; async function testPlaywright() { console.log('Testing Playwright - Browser will open visibly...'); try { const browser = await chromium.launch({ headless: false, slowMo: 500 // Slow down operations so you can see them }); console.log('✓ Browser launched'); const context = await browser.newContext(); const page = await context.newPage(); console.log('✓ Page created'); await page.goto('https://example.com'); console.log('✓ Navigated to example.com'); const title = await page.title(); console.log(`✓ Page title: "${title}"`); // Wait a bit so you can see it await page.waitForTimeout(3000); await browser.close(); console.log('✓ Browser closed'); console.log('\n✅ Playwright is working correctly!'); } catch (error) { console.error('❌ Error:', error.message); process.exit(1); } } testPlaywright();

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/aolshaun/chat-context-mcp'

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