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

mcp-sprites

v0.1.1

Published

MCP server that serves character emotion sprites to LLMs

Readme

mcp-sprites 🎭

An MCP (Model Context Protocol) server that serves character emotion sprites to LLMs. Give your AI assistant a face!

The Problem

LLMs in chat interfaces are text-only. But humans communicate with expressions! This MCP fills the gap:

  • Sprites → Instantly usable web URLs
  • Agent uses in conversation![happy](https://...)
  • Works in any markdown-capable chat UI

Features

  • 🎨 JSON-backed character packs (easy to extend)
  • 🔧 Simple tools for listing and fetching sprites
  • 📝 Markdown output ready for chat UIs
  • 📦 Ships with 2 packs: aria (anime-style) and memes (33 animal meme emotions!)

Installation

npm install mcp-sprites

MCP Client Config

Add to your MCP client config (e.g., Claude Desktop):

{
  "mcpServers": {
    "sprites": {
      "command": "npx",
      "args": ["mcp-sprites"]
    }
  }
}

Tools

| Tool | Description | |------|-------------| | list_characters() | Returns available character packs | | list_emotions(character) | Returns emotions for a character | | get_sprite(character, emotion) | Returns ![emotion](url) markdown | | get_sprite_url(character, emotion) | Returns just the URL | | random_emotion(character) | Returns a random emotion sprite |

Built-in Character Packs

aria - Anime-style character

7 emotions: neutral, surprised, happy, worried, shocked, excited, smug

memes - Animal meme reactions

33 emotions including:

| Happy | Sad | Angry | Thinking | |-------|-----|-------|----------| | excited | empty_inside | annoyed | skeptical | | lovestruck | deeply_sad | crazy_angry | pondering | | chill_vibes | mourning | frustrated | denial | | happy | sobbing | angry | confused | | loving | pepe_crying | | bewildered | | dancing | pepe_sad | | | | cheering | | | | | cozy | | | | | delighted | | | |

Plus: guilty_pleasure, terrified, pepe_anxious, dramatic, mischievous, watching_drama, pleading, hungry

Example Usage

In your system prompt:

You have access to mcp-sprites. Use get_sprite("memes", "emotion") 
to express your feelings visually in chat!

Then the LLM can do:

get_sprite("memes", "excited") → ![excited](https://cdn3.emoji.gg/emojis/55105-yippee.png)

Adding Custom Characters

Edit src/characters.json:

{
  "my_character": {
    "emotions": ["happy", "sad", "angry"],
    "urls": {
      "happy": "https://your-cdn.com/happy.png",
      "sad": "https://your-cdn.com/sad.png", 
      "angry": "https://your-cdn.com/angry.png"
    }
  }
}

Or use indexed URLs:

{
  "my_character": {
    "baseUrl": "https://your-cdn.com/sprites/{index}.png",
    "emotions": ["happy", "sad", "angry"]
  }
}

Use Cases

  1. AI Assistants with personality - Give Claude, GPT, etc. visual reactions
  2. Roleplay/Character bots - Display character sprites in chat
  3. Educational bots - Visual feedback for learning apps
  4. Customer support - Friendly visual cues

License

MIT

Links