We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bitflux-ai/bitflux_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
sha256tool.py•265 B
import hashlib
import argparse
parser = argparse.ArgumentParser(description='Hash an instance ID using SHA256')
parser.add_argument('instance_id', help='Instance ID to hash')
args = parser.parse_args()
print(hashlib.sha256(args.instance_id.encode()).hexdigest())