We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tbreeding/jira-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
require-file-header-example.js•666 B
/**
* This is an example of a valid file header comment that meets the length requirements.
* It provides clear context about the purpose of this file, which is to demonstrate
* the require-file-header ESLint rule. The comment should be between 50 and 500 characters
* to pass the rule's validation.
*/
// This example shows a valid file with a proper header comment
function ExampleClass() {
this.doSomething = function() {
console.log('Doing something...');
};
}
module.exports = ExampleClass;
// For reference, files missing a header comment or with too short comments
// (under 50 characters) would trigger an ESLint error when using this rule