We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/memextech/ht-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
tag-release.sh•312 B
#!/bin/bash
# Script to tag and push release after PR is merged
# Make sure we're on main branch with latest changes
git checkout main
git pull
# Create and push the tag
git tag -a v0.1.1 -m "Release version 0.1.1 with Windows platform support"
git push origin v0.1.1
echo "Tagged v0.1.1 and pushed to remote"