@codestrap/node-generators
v0.0.1-3
Published
Code generators for React, TanStack Query, and Palantir Foundry
Downloads
519
Readme
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_KEYfrom https://larry-as-a-service.vercel.app/ (login with GitHub)
Getting Your API Key
- Visit https://larry-as-a-service.vercel.app/
- Log in with your GitHub account
- Generate & copy your API key from the dashboard
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-generatorsReplace 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"]
}
}
}