We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Wayfinder-Foundry/gdal-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
08_function_length.md•435 B
# 8️⃣ `08_function_length.md`
# Function Length
### Guideline
Keep functions around **20 lines or fewer**.
Extract helpers when they grow complex.
### ✅ Prefer
Small, well-named helpers with one purpose.
### ⚖️ Soft Limit
Longer is okay if it reads cleanly and remains cohesive.
Use judgment, not word count.
---
### 🤝 Our Philosophy
Functions should read like clear thoughts: short enough to hold in your head.