We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mizchi/typescript-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
pre-commit•388 B
#!/bin/sh
# Check formatting (don't modify files)
echo "Checking code format..."
if ! pnpm biome check --linter-enabled=false --formatter-enabled=true src/ tests/ 2>/dev/null; then
echo "❌ Code is not formatted. Run 'pnpm biome format --write src/ tests/' to fix."
exit 1
fi
# Run lint
echo "Running lint..."
pnpm lint
# Run type check
echo "Running type check..."
pnpm typecheck