Analyzes hash strings to identify their likely algorithm based on length and format patterns. Available via MCP in Cursor and other AI coding tools, or REST at GET /v1/hash/identify. Input a hash like "5d41402abc4b2a76b9719d911017c592" and get back "MD5" with confidence indicators. Supports 20+ common algorithms including SHA variants, MD5, bcrypt, and others.
curl "https://tinyfn.io/v1/hash/identify" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/hash/identify', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const data = await response.json();
console.log(data);
import requests
response = requests.get('https://tinyfn.io/v1/hash/identify',
headers={'X-API-Key': 'YOUR_API_KEY'})
data = response.json()
print(data)
Connect your AI agent (Claude, Cursor, Windsurf, etc.) to TinyFn's hash tools:
{
"mcpServers": {
"tinyfn-hash": {
"url": "https://tinyfn.io/mcp/hash",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Supports MD5, SHA-1, SHA-256, SHA-512, bcrypt, scrypt, PBKDF2, Argon2, CRC32, and other common algorithms. Identification is based on length, character set, and format patterns.
Your AI agent can analyze unknown hashes in code or data by calling the identify tool automatically. Useful for security audits, legacy code analysis, or when reverse-engineering systems.
Identifies standard formats only. Custom implementations, salted hashes with non-standard formatting, or proprietary algorithms won't be recognized reliably.
Identification determines the algorithm used to create a hash. Verification checks if plaintext matches a hash. This tool only does identification—it can't crack or verify hashes.
Very reliable for standard formats. Returns confidence levels and may suggest multiple possibilities for ambiguous cases like SHA-256 vs other 64-character hex strings.
Get your free API key and start using Identify Hash in seconds.
Get Free API Key