We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/prisma/prisma'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
readme.md•670 B
# SQL Commenter E2E Test
This test verifies that the SQL commenter plugin feature works correctly end-to-end with a real database.
## What it tests
- Multiple plugins are combined and their comments are merged
- Later plugins override earlier ones for the same key (tests overlap behavior)
- Comments are correctly appended to SQL queries in sqlcommenter format
## Setup
- Uses SQLite with the `better-sqlite3` driver adapter
- Uses the `@prisma/sqlcommenter` package for plugin type definitions
- Captures query events via `$on('query', ...)` to verify comments in SQL
## Running the test
```bash
pnpm --filter @prisma/client test:e2e --verbose sqlcommenter
```