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

eddyter-mcp

v0.1.4

Published

Model Context Protocol server for Eddyter — let your AI agent set up and configure the Eddyter editor.

Readme

Eddyter MCP Server

A Model Context Protocol server that lets AI tools (Claude Desktop, Cursor, Windsurf, …) inspect and — in later steps — configure the Eddyter editor on an admin's behalf.

This is the admin-side surface: the account owner connects it to their AI tool using a license key. Changes made through it apply to every end-user of the editor that uses that key, with no redeploy (config lives server-side on the key).

Tools

Reads are always available. The config-changing tool is opt-in (EDDYTER_ALLOW_WRITES=true) so a pasted key can't change the live editor unless the admin allows it.

| Tool | Mode | What it does | | --- | --- | --- | | verify_status | read | Is the key valid/active? Plan, expiry, subscription, BYOK, warnings. | | get_config | read | Which editor features are enabled, off-but-allowed, or locked by plan. | | get_usage | read | Credits remaining, usage this period, days until reset. | | get_integration_snippet | read | SSR-safe copy-paste setup code per framework. | | update_config | write (opt-in) | Patch the editor's features (e.g. turn AI chat off). Clamped to the plan; live with no redeploy. |

Backend: reads ride the public /api/license/validate; get_usage and update_config use the X-API-Key endpoints GET /api/license/usage and POST /api/license/config.

Setup

pnpm install
pnpm build

Get a license key from the dashboard: https://www.eddyter.com/user/license-key (The MCP never creates keys — humans mint them in the portal.)

Connect to Claude Desktop

Add to claude_desktop_config.json (Settings → Developer → Edit Config):

{
  "mcpServers": {
    "eddyter": {
      "command": "node",
      "args": ["/absolute/path/to/apps/mcp/dist/index.js"],
      "env": {
        "EDDYTER_LICENSE_KEY": "eddyt_your_key_here"
      }
    }
  }
}

Connect to Cursor

.cursor/mcp.json in your project, same command / args / env shape.

Then ask the agent: "Is my Eddyter key valid?" or "What editor features do I have enabled?"

Configuration

| Env var | Default | Purpose | | --- | --- | --- | | EDDYTER_LICENSE_KEY | — | Key the agent acts on. Optional if passed per tool call. | | EDDYTER_ENV | production | production | staging | local. | | EDDYTER_API_BASE_URL | — | Advanced override of the backend base URL. | | EDDYTER_ALLOW_WRITES | false | Set true to expose update_config (lets the agent change the live editor). |

Develop & test

pnpm dev          # tsc --watch
pnpm inspect      # open the MCP Inspector against this server

Quick manual smoke test (no real key needed — exercises the live error path):

printf '%s\n' \
  '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"t","version":"0"}}}' \
  '{"jsonrpc":"2.0","method":"notifications/initialized"}' \
  '{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}' \
  | node dist/index.js

Notes

  • Logs go to stderr — stdout is the JSON-RPC channel and must stay clean.
  • Feature labels surfaced by get_config live in src/format.ts (FEATURE_LABELS) — tune names/ordering there to match the marketing site.