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
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
<!-- Exclude generated code and configuration classes -->
<Match>
<Class name="~.*\.config\..*"/>
</Match>
<!-- Exclude DTOs and entities -->
<Match>
<Class name="~.*\.dto\..*"/>
</Match>
<Match>
<Class name="~.*\.entity\..*"/>
</Match>
<!-- Exclude application main classes -->
<Match>
<Class name="~.*Application"/>
</Match>
<!-- Exclude Lombok-generated code -->
<Match>
<Class name="~.*\$.*"/>
</Match>
<!-- Exclude test code (if we enable test analysis later) -->
<Match>
<Class name="~.*Test"/>
</Match>
<Match>
<Class name="~.*Tests"/>
</Match>
</FindBugsFilter>