We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jgravelle/github-codemunch-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Sample.java•340 B
package sample;
/**
* User service
*/
public class Sample {
public static final int MAX_RETRIES = 3;
/**
* Get user by ID
*/
public String getUser(int userId) {
return "user-" + userId;
}
public static boolean authenticate(String token) {
return token != null && !token.isEmpty();
}
}