We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/oraios/serena'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.pl•298 B
#!/usr/bin/env perl
use strict;
use warnings;
use lib '.';
require helper;
sub greet {
my ($name) = @_;
return "Hello, $name!";
}
my $user_name = "Perl User";
my $greeting = greet($user_name);
print "$greeting\n";
helper_function();
sub use_helper_function {
helper_function();
}