Skip to main content
Glama
test-debug.js481 B
// Example JavaScript file for testing the debugger MCP tools function fibonacci(n) { if (n <= 1) { return n; } return fibonacci(n - 1) + fibonacci(n - 2); } function main() { console.log('Starting Fibonacci calculation...'); for (let i = 0; i <= 10; i++) { const result = fibonacci(i); console.log(`Fibonacci(${i}) = ${result}`); } console.log('Fibonacci calculation completed!'); } // Run the main function main();

Latest Blog Posts

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/davidfirst/vscode-mcp-debugger'

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