Skip to main content
Glama

Timezone MCP Server

by sam-artuso
pre-pushβ€’908 B
#!/bin/sh echo "πŸ” Running pre-push checks..." # Run fast checks in parallel (typecheck, lint, format) echo "⚑ Running parallel checks (typecheck, lint, format)..." pnpm typecheck & P1=$! pnpm lint & P2=$! pnpm format:check & P3=$! # Wait for all parallel checks and fail if any failed wait $P1 || exit 1 wait $P2 || exit 1 wait $P3 || exit 1 echo "βœ… Parallel checks passed" # Run test suite with coverage enforcement (95% branches, 100% lines/statements) echo "πŸ§ͺ Running tests with coverage (95% branches, 100% lines/statements)..." pnpm test:cov -- --coverage.thresholds.lines=100 --coverage.thresholds.branches=95 --coverage.thresholds.statements=100 || exit 1 echo "βœ… Tests and coverage passed" # Run security audit (critical vulnerabilities only) echo "πŸ”’ Running security audit (critical only)..." pnpm audit --audit-level=critical || exit 1 echo "βœ… All pre-push checks passed!"

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/sam-artuso/demo-mcp'

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