Skip to main content
Glama

get_cheatsheet

Access a condensed NoJS directive cheatsheet for quick reference during development. This tool provides essential framework information for template validation and component scaffolding.

Instructions

Get a condensed NoJS directive cheatsheet for quick reference

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The get_cheatsheet tool is registered and implemented directly within the server.tool call in src/tools/index.ts. It reads "cheatsheet.md" using a helper function and returns its content.
    // ── get_cheatsheet ──
    server.tool(
        "get_cheatsheet",
        "Get a condensed NoJS directive cheatsheet for quick reference",
        {},
        async () => {
            const cheatsheet = loadDoc("cheatsheet.md");
            return {
                content: [{ type: "text" as const, text: cheatsheet }],
            };
        }
    );

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/ErickXavier/nojs-mcp'

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