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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@te-code/image-gen-mcp

v1.0.0

Published

MCP server for TE Code image generation (app assets, game assets, covers, logos)

Readme

TE Image Generation MCP Server

MCP server that gives Claude Code native tools for generating images:

  • App Assets: Icons, splash screens, feature graphics for iOS/Android
  • Game Assets: Sprites, characters, backgrounds, tilesets
  • Book Covers: Cover images with title/author text
  • Logos: Brand marks and logos

Setup

1. Install

cd mcp-server
npm install
npm run build

2. Get Service Key

Get a TE_SERVICE_KEY from TENEO Auth or your admin.

3. Add to Claude Code

Add to your ~/.claude/settings.json (or project .claude/settings.json):

{
  "mcpServers": {
    "te-image-gen": {
      "command": "node",
      "args": ["D:/Travis Eric/TE Code/book-cover-generator/mcp-server/dist/index.js"],
      "env": {
        "TE_SERVICE_KEY": "your_service_key_here"
      }
    }
  }
}

Or if published to npm:

{
  "mcpServers": {
    "te-image-gen": {
      "command": "npx",
      "args": ["@tecode/image-gen-mcp"],
      "env": {
        "TE_SERVICE_KEY": "your_service_key_here"
      }
    }
  }
}

4. Restart Claude Code

The tools will now be available in your Claude Code session.

Available Tools

generate_app_asset

Generate app assets for iOS/Android apps.

Asset types: app_icon, splash_screen, feature_graphic, hero_image, promo_image, marketing_text
Styles: ios17, minimal, gradient, glassmorphism, flat, 3d, neon, outline
Providers: auto, nanobanana (fast), nanobanana-pro (quality+text), ideogram (best)

Example:

Generate an app icon for Flux - a habit tracking app.
Use a flowing wave symbol in green (#34C759), modern iOS style.

generate_game_asset

Generate game assets like sprites, backgrounds, and characters.

Asset types: sprite, icon, background, tileset, character, item
Styles: pixel-art, hand-drawn, isometric, stylized, realistic, low-poly, chibi
Moods: cozy, heroic, dark, cute, magical, retro, sci-fi, spooky, vibrant

Example:

Generate a treasure chest sprite in pixel-art style for a cozy RPG game.

generate_cover

Generate book covers with title and author text.

Use ideogram provider for best text rendering.

Example:

Generate a sci-fi book cover for "The Last Algorithm" by Jane Smith.
Dark space background with glowing circuitry patterns.

generate_logo

Generate logos and brand marks.

Example:

Generate a minimal logo for TechFlow - a SaaS company.
Abstract flowing lines, no text, works well at small sizes.

list_providers

List available AI providers and their capabilities/pricing.

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | TE_SERVICE_KEY | Service key for authentication | Required | | TE_IMAGE_GEN_URL | API base URL | https://bookcovergenerator.ai |

Provider Comparison

| Provider | Speed | Quality | Text | Credits | |----------|-------|---------|------|---------| | nanobanana | Fast | Good | Basic | 2-5 | | nanobanana-pro | Medium | Great | Good | 5-12 | | ideogram | Medium | Best | Excellent | 8-15 |

Use provider: "auto" to let the system choose based on your request.

For Other Projects

To add image generation to your project:

  1. Copy this MCP server or install via npm
  2. Add to project's .claude/settings.json
  3. Claude in your project now has native image tools

See D:\Travis Eric\TE Code\.claude\AI_TO_AI_INTEGRATION.md for full ecosystem docs.