We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/langadventurellc/task-trellis-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
pre-commit•330 B
#!/bin/sh
# Run lint-staged for conditional formatting
npx lint-staged
# Run additional quality checks if code files were changed
if git diff --staged --name-only | grep -E '\.(ts|tsx|js|jsx)$' > /dev/null; then
echo "Code files detected, running quality checks..."
mise run lint
mise run type-check
mise run test:all
fi