npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@metaengine/mcp-server

v1.1.1

Published

Model Context Protocol server enabling AI assistants to generate perfect code in 10 languages (TypeScript, Python, Go, C#, Java, Kotlin, Groovy, Scala, Swift, PHP) with zero syntax errors and automatic imports. Built for Claude Code and Claude Desktop.

Downloads

665

Readme

MetaEngine MCP Server

npm version License: MIT MCP

Turn one conversation into 50 consistent files. Claude architects, MetaEngine builds.

A specialized tool for AI assistants. You describe what you need in natural language—Claude decides when structured generation makes sense and handles the rest.

Install

Add to ~/.claude/mcp.json (Claude Code) or Claude Desktop config:

{
  "mcpServers": {
    "metaengine": {
      "command": "npx",
      "args": ["-y", "@metaengine/mcp-server"]
    }
  }
}

That's it. No API key, no signup, free to use.

How It Works

Without MCP (file-by-file):

Claude: Generate User.ts → write → generate Order.ts → write → generate Product.ts → write...
Result: 20 sequential operations, growing context, potential pattern drift

With MCP (structured):

You: "Create User, Order, and Product models with services and repositories"
Claude: Constructs spec → MetaEngine returns all files → writes 15 files at once
Result: Instant, consistent, minimal context usage

You talk to Claude in natural language. Claude decides when structured generation makes sense and handles everything automatically.

When Claude Uses This Tool

  • Generating 20-100 interconnected files where consistency matters
  • Multi-language projects (same architecture in TypeScript, Python, Go, C#, Java, Kotlin, Groovy, Scala)
  • Pattern multiplication (same structure applied to many entities)
  • Complex import management across deep namespaces

When Claude Generates Directly

  • 1-15 files — Claude's direct generation is faster for small tasks
  • Exploratory coding where structure is still evolving
  • One-off scripts and utilities
  • Rapid prototyping where flexibility beats consistency

Both approaches are valid. Claude picks the right tool for the job.

Real-World Workflows

Cross-Language Test Parity

Point Claude at existing TypeScript tests → generate equivalent Go/Python/C# tests with same coverage in minutes instead of days.

Multi-Entity CRUD System

"Generate User, Order, Product, Category with services, repositories, DTOs, and validators" → 50 files in ~60 seconds with perfect consistency.

Polyglot Architecture

Same domain model across TypeScript frontend, Python API, Go microservices. One conversation, consistent types everywhere.

Pattern Multiplication

Claude reads one well-designed service, generates the same pattern for 20 entities with identical structure.

Performance

  • Instant generation — 25-100 files in one call
  • 3.8x faster than file-by-file generation at scale
  • 57% fewer tokens — compact spec vs full file text

The tipping point is around 20 files—below that, Claude's direct generation is simpler.

Languages Supported

TypeScript, Python, Go, C#, Java, Kotlin, Groovy, Scala

Each generates idiomatic code (data classes in Kotlin, case classes in Scala, etc.)

Privacy & Pricing

  • Free — no API key, no signup, unlimited requests
  • Private — specs sent for generation are never saved or logged
  • Local — MCP server runs on your machine, MIT licensed

Documentation

Detailed guides are included with the package:

  • AI_ASSISTANT_GUIDE.md — Complete reference for AI assistants
  • QUICK_START.md — Patterns and configurations
  • EXAMPLES.md — Real-world usage across all languages

Claude reads these automatically through MCP resources.

Common Questions

Do I need to learn the JSON spec format? No. You talk to Claude in natural language. Claude constructs specs automatically.

How is this different from Claude generating code directly? Claude Code is excellent at direct generation—and faster for small tasks. MetaEngine is a specialized tool for when you need structured generation at scale (20-100 files) with guaranteed consistency.

Is my code sent to a server? Only the generation specs (JSON describing what to create). Your existing code never leaves your machine. Specs are never saved or logged.

Can I use this with other AI assistants? Yes—any MCP-compatible assistant works. Currently that includes Claude Desktop and Claude Code.

Links

License

MIT