We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jasondk/clangaroo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.cpp•324 B
#include "hello.h"
#include <iostream>
int main() {
std::cout << "Starting test..." << std::endl;
// Test class instantiation
Hello hello("World");
hello.greet();
// Test function call
int result = add_numbers(5, 3);
std::cout << "Result: " << result << std::endl;
return 0;
}