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

cutedyno

v1.1.1

Published

CuteDyno CLI and MCP server for AI agents.

Downloads

83

Readme

cutedyno

JSON CLI and MCP server for CuteDyno. Schedule and publish to Instagram, TikTok, LinkedIn, Facebook, and YouTube — from shell scripts or AI agents.

npm install -g cutedyno

CLI quickstart

export CUTEDYNO_API_KEY=cdyn_live_...
cutedyno auth:status
cutedyno accounts:list
cutedyno posts:create -c "Hello" -a acct_1 --now

Every data command prints JSON to stdout. Errors print JSON to stderr and exit 1.

Full docs: cutedyno.com/docs/cli

Common commands

| Command | Purpose | | --- | --- | | auth:status | Check API key configuration | | profiles:list | List profiles | | accounts:list | Connected social accounts | | policy:get | Posting policy and limits | | media:upload ./clip.mp4 | Upload a local file (scripts) | | media:upload-session | Create a browser upload link (agents) | | media:upload-session:get --id | Poll an upload session | | analytics:get | Live account metrics | | analytics:history --from --to | Timeseries and top content | | posts:create --json ./post.json | Create a post | | posts:publish --id | Publish a draft | | mcp | Start the stdio MCP server |

Media for AI agents

AI clients cannot read files from the user's computer. Create a hosted upload session instead:

SESSION=$(cutedyno media:upload-session --profile "$PROFILE")
echo "$SESSION" | jq -r '.uploadUrl'   # send user here

# After they upload and click Done:
cutedyno media:upload-session:get --id "$(echo "$SESSION" | jq -r '.id')" --profile "$PROFILE"

For local scripts with files on disk, use media:upload instead.

MCP

Hosted (recommended for cloud agents):

{
  "mcpServers": {
    "cutedyno": {
      "url": "https://api.cutedyno.com/mcp",
      "headers": { "Authorization": "Bearer cdyn_live_..." }
    }
  }
}

Stdio (local):

{
  "mcpServers": {
    "cutedyno": {
      "command": "npx",
      "args": ["-y", "cutedyno", "mcp"],
      "env": { "CUTEDYNO_API_KEY": "cdyn_live_..." }
    }
  }
}

List all 32 tools:

npx -y cutedyno mcp --tools

Docs: cutedyno.com/docs/mcp

Skills

npx skills add cutedyno/cutedyno-agent

Environment

| Variable | Required | Default | | --- | --- | --- | | CUTEDYNO_API_KEY | yes (or cutedyno auth:set) | — | | CUTEDYNO_API_URL | no | https://api.cutedyno.com |

Library

Embed the MCP server in your own Node process:

import { createCuteDynoMcpServer } from 'cutedyno';
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';

const server = createCuteDynoMcpServer({ apiKey: process.env.CUTEDYNO_API_KEY! });
await server.connect(new StdioServerTransport());

For typed REST calls, use @cutedyno/node.