We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/benpm/claude_lldb_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
multifile_helper.cpp•268 B
// Multi-file test - helper implementation
#include "multifile_helper.h"
int helper_double(int x) {
int result = x * 2; // Line 5 in this file
return result;
}
int helper_square(int x) {
int result = x * x; // Line 10 in this file
return result;
}