Skip to main content
Glama
by microsoft
fib.cpp276 B
#include <iostream> int fibonacci(int n) { if (n <= 1) { return n; } return fibonacci(n - 1) + fibonacci(n - 2); } int main() { int n = 10; // Example input std::cout << "Fibonacci of " << n << " is " << fibonacci(n) << std::endl; return 0; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/microsoft/genaiscript'

If you have feedback or need assistance with the MCP directory API, please join our Discord server