🚨 Latest Research:Tanstack npm Packages Compromised in Ongoing Mini Shai-Hulud Supply-Chain Attack.Learn More
Socket
Book a DemoSign in
Socket

@codestrap/node-generators

Package Overview
Dependencies
Maintainers
3
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codestrap/node-generators

Code generators for React, TanStack Query, and Palantir Foundry

latest
npmnpm
Version
0.0.1-4
Version published
Weekly downloads
47
-72.83%
Maintainers
3
Weekly downloads
 
Created
Source

CodeStrap node-generators

A family of high-determinism code generators. Generates code through deterministic prompts rather than free-form LLM requests, reducing token consumption while maintaining consistency.

This package integrates with the Model Context Protocol (MCP) to provide code generation tools across various AI clients and IDEs.

Setup

Prerequisites

  • Node.js 18+
  • LARRY_API_KEY from https://larry-as-a-service.vercel.app/ (login with GitHub)

Getting Your API Key

Integrations

Claude Code

Claude Code is Anthropic's interactive agentic coding tool with full MCP support. You can configure MCP servers using the Claude CLI command.

Use the claude mcp add command to quickly add the server:

claude mcp add codestrap-node-generators -e LARRY_API_KEY=your-api-key-here \
  -- npx -y @codestrap/node-generators

Replace your-api-key-here with your actual LARRY API key.

Follow the Claude Code MCP documentation

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "codestrap-node-generators": {
      "cwd": "${workspaceFolder}",
      "env": {
        "LARRY_API_KEY": "your-api-key-here"
      },
      "command": "npx",
      "args": ["-y", "@codestrap/node-generators"]
    }
  }
}

FAQs

Package last updated on 01 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts