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
ComponentTestConfiguration.java•527 B
package adrianmikula.projectname.component;
import org.springframework.boot.test.context.TestConfiguration;
import org.springframework.context.annotation.Profile;
/**
* Test configuration for component tests using TestContainers.
* Containers are managed by AbstractComponentTest via @Container annotations.
*
* This is a template example - add your own test configuration here.
*/
@TestConfiguration
@Profile("component-test")
public class ComponentTestConfiguration {
// Add test-specific beans here if needed
}