We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/michoo/security_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
python-jwt.py•358 B
# If a JSON Web Token (JWT) is not signed with a strong cipher algorithm
# (or not signed at all) an attacker can forge it and impersonate user identities.
# Don’t use none algorithm to sign or verify the validity of a token.
# Don’t use a token without verifying its signature before.
import python_jwt
jwt.process_jwt(token) # Noncompliant