Skip to main content
Glama

MCP Printer Server

by steveclarke
script.weirdβ€’333 B
// This file has a .weird extension but contains real JavaScript code // It should NOT auto-render (unknown extension) // Use force_code_render=true to render it function fibonacci(n) { if (n <= 1) return n; return fibonacci(n - 1) + fibonacci(n - 2); } const result = fibonacci(10); console.log(`Fibonacci(10) = ${result}`);

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/steveclarke/mcp-printer'

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