Skip to main content
Glama

IT Tools MCP Server

setup-commit-template.sh•1.68 kB
#!/bin/bash # Setup script for commit templates and git hooks echo "šŸš€ Setting up commit templates and hooks for it-tools-mcp..." # Set up commit template echo "šŸ“ Configuring git commit template..." git config commit.template .gitmessage echo "āœ… Commit template configured (use 'git commit' without -m to see template)" # Set up git hooks (optional) read -p "šŸŖ Do you want to install git hooks (commit validation + auto-versioning)? (y/n): " -n 1 -r echo if [[ $REPLY =~ ^[Yy]$ ]]; then echo "šŸ“ Setting up git hooks directory..." git config core.hooksPath .githooks chmod +x .githooks/* echo "āœ… Git hooks installed (commit-msg validation, auto-versioning)" git config core.hooksPath .githooks echo "āœ… Git hooks configured" echo " - Commit messages will be validated against conventional commit format" echo " - Invalid commits will be rejected with helpful error messages" else echo "ā­ļø Skipping git hooks setup" fi echo "" echo "šŸŽ‰ Setup complete!" echo "" echo "šŸ“š Usage:" echo " • Use 'git commit' (without -m) to see the template" echo " • Use conventional commit format: 'type: description'" echo " • See COMMIT_TEMPLATE_SETUP.md for detailed examples" echo "" echo "šŸ”„ Version bumping:" echo " • feat: → minor version bump" echo " • fix: → patch version bump" echo " • BREAKING CHANGE: → major version bump" echo " • Others → patch version bump" echo "" echo "Example commits:" echo " git commit -m 'feat: add new hash generator tool'" echo " git commit -m 'fix: resolve encoding issue in base64'" echo " git commit -m 'feat!: restructure API (breaking change)'" echo ""

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/wrenchpilot/it-tools-mcp'

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