We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/adrianmikula/JakartaMigration'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
VerificationStatus.java•590 B
package adrianmikula.jakartamigration.runtimeverification.domain;
/**
* Status of a runtime verification operation.
*/
public enum VerificationStatus {
/**
* Verification completed successfully with no errors.
*/
SUCCESS,
/**
* Verification failed with errors.
*/
FAILED,
/**
* Verification completed with some warnings but no critical errors.
*/
PARTIAL,
/**
* Verification timed out.
*/
TIMEOUT,
/**
* Verification status is unknown or could not be determined.
*/
UNKNOWN
}