{"name": "kinosec-api-harness", "version": "1.0.0", "description": "Bearer/JWT API authentication harness", "endpoints": {"/auth/login": {"method": "POST", "description": "Authenticate with email and password", "body": {"email": "string", "password": "string"}, "returns": "access_token, refresh_token"}, "/auth/register": {"method": "POST", "description": "Register a new user", "body": {"email": "string", "password": "string"}, "returns": "access_token, refresh_token"}, "/auth/refresh": {"method": "POST", "description": "Refresh an access token", "body": {"refresh_token": "string"}, "returns": "access_token, refresh_token"}, "/me": {"method": "GET", "description": "Get current user info", "auth": "Authorization: Bearer <token>"}, "/api/protected": {"method": "GET", "description": "Protected resource endpoint", "auth": "Authorization: Bearer <token>"}, "/healthz": {"method": "GET", "description": "Health check"}}, "auth": {"header": "Authorization", "scheme": "Bearer", "token_format": "jwt"}}