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

aisthesis

v0.1.1

Published

An MCP server that gives Claude the senses it lacks - image generation, image editing, speech, and transcription - via the OpenAI API.

Readme

aisthesis

CI

aísthēsis (αἴσθησις) — Greek for "perception, sensation." The root of aesthetic.

An MCP server that gives Claude the senses it doesn't have.

Claude reasons in text. It can't make an image, speak, or listen on its own. aisthesis closes that gap by exposing a focused set of OpenAI media capabilities as Model Context Protocol tools — so any MCP client (Claude Desktop, Claude Code, and others) can generate and edit images, synthesize speech, and transcribe audio, right inside a conversation.

It is deliberately not a kitchen-sink OpenAI wrapper. Wrapping OpenAI's text models from inside Claude is redundant. The value is purely in the modalities Claude lacks natively.

Capabilities

| Tool | What it does | | --- | --- | | generate_image | Text → image (one or more), inline + optional save to disk | | edit_image | Edit / extend / inpaint an existing image, with optional mask | | text_to_speech | Text → spoken audio, selectable voice and format | | transcribe_audio | Audio file → text transcript | | transcribe_with_speakers | Transcript with speaker diarization (who spoke when) | | transcribe_with_timestamps | Time-aligned transcript: segment/word timestamps or SRT/VTT subtitles | | describe_image | Vision: caption, OCR, or answer questions about an image | | moderate_content | Pre-screen text with OpenAI's (free) moderation endpoint |

See docs/usage.md for how to use it and what the MCP server exposes, and docs/tools.md for the full per-tool reference.

Install

Requires Node ≥ 20 and your own OpenAI key (the server is bring-your-own-key — it never proxies credentials). Pick whichever path fits:

Claude Desktop Extension — one click, no terminal

Build the bundle (or download it from Releases once published):

npm install && npm run bundle   # produces aisthesis.mcpb

Double-click aisthesis.mcpb → Claude Desktop opens an installer → paste your OpenAI key in the form → done. No JSON editing, no paths.

npm / npx

Once published, point any MCP client at npx — no clone, no build:

{
  "mcpServers": {
    "aisthesis": {
      "command": "npx",
      "args": ["-y", "aisthesis"],
      "env": { "OPENAI_API_KEY": "sk-..." }
    }
  }
}

Or install it and let the wizard write your client config for you:

npm install -g aisthesis
aisthesis init      # configures Claude Desktop / Claude Code interactively

From source (development)

git clone https://github.com/igmizo/aisthesis.git
cd aisthesis && npm install && npm run build
npm run inspect     # try it in the MCP Inspector
node dist/index.js init   # or auto-configure your client

Manual config (any client): add a server that runs node /abs/path/dist/index.js with OPENAI_API_KEY in its env. Full details, including Claude Code's claude mcp add command and all env vars: docs/configuration.md.

How output works

Images and audio are always returned inline as base64 content blocks. If you set AISTHESIS_OUTPUT_DIR (or pass save_path to a tool), the result is also written to disk and the file path is returned — handy for piping into an editor or a static site.

Design notes

  • BYOK, never proxied. Each user supplies their own OpenAI key, bound by their own OpenAI agreement.
  • Default moderation. Content limits are enforced by OpenAI server-side; this server adds no settings to weaken them. A well-behaved server is the point.
  • Configurable models. Every model is overridable via env var (see .env.example) so the defaults can age gracefully as OpenAI ships newer identifiers.

Roadmap

stdio today; a remote Cloudflare Worker variant (Streamable HTTP + R2 output) is next. See docs/roadmap.md.

License

MIT — see LICENSE.