We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/y3i12/nabu_nisaba'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Helper.pm•419 B
package Utils::Helper;
use strict;
use warnings;
use Exporter 'import';
our @EXPORT_OK = qw(validate_input format_output);
=head1 NAME
Utils::Helper - Helper utility functions for validation and formatting
=cut
sub validate_input {
my ($data) = @_;
if (!defined $data) {
die "Data cannot be undefined";
}
return 1;
}
sub format_output {
my ($value) = @_;
return uc($value);
}
1;