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

@anaella/mcp

v0.2.2

Published

MCP server for anaella.com — schedule and publish social posts via the /v1 API.

Readme

@anaella/mcp

An MCP (Model Context Protocol) server for anaella.com — schedule and publish social posts to your connected channels via the anaella /v1 API, from any MCP client (Claude, Claude Code, Cursor, etc.).

It's hosted at https://api.anaella.com/mcp (Streamable HTTP), or you can run it locally over stdio.

Client configuration

Remote (recommended):

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

Local (stdio):

{ "mcpServers": { "anaella": {
  "command": "npx", "args": ["-y", "@anaella/mcp"],
  "env": { "ANAELLA_API_KEY": "ana_..." }
}}}

Get an API key (ana_...) from your anaella organization settings.

Tools

  • list_channels — List the connected social channels for your organization. Call this first to get the channel ids you pass to create_post.
  • create_post — Create and (optionally) publish a post to one or more channels.
    • channels: string[] (required) — channel ids from list_channels
    • text?: string — post text / caption
    • when?: string"now" publishes immediately, "draft" (default) saves without publishing, or an ISO-8601 timestamp schedules it
    • media?: { url: string }[] — public file URLs the API downloads
    • type?: "post" | "reel" | "thread" | "story" — defaults to "post"
    • firstComment?: string
    • Publishing is asynchronous — poll get_post for the final per-channel status.
  • list_posts — List recent posts for your organization with their per-channel status.
    • limit?: number (1-100), cursor?: number
  • get_post — Get one post by id, including its per-channel publish status.
    • id: string
  • delete_post — Delete a draft or cancel a scheduled post by id.
    • id: string

Environment variables

  • ANAELLA_API_KEY — required for stdio mode; your ana_... API key.
  • ANAELLA_API_URL — base URL for the anaella API. Defaults to https://api.anaella.com.

In remote (Streamable HTTP) mode the API key is instead passed per-request as an Authorization: Bearer ana_... header.

Local development

bun install
bun run build        # tsup -> dist/index.js (stdio) + dist/http.js (Streamable HTTP)
bun run dev           # tsup --watch
bun test

Smoke test

bun run smoke runs an opt-in, live smoke test against a real anaella API: it lists your channels, creates a draft post (never publishes), then deletes it. It's a no-op unless ANAELLA_SMOKE_KEY is set to a real ana_... key.

ANAELLA_SMOKE_KEY=ana_... ANAELLA_API_URL=https://api.anaella.com bun run smoke

Docker

Build context is this package directory (packages/mcp) — the image is self-contained and has no @anaella/* workspace dependencies to resolve.

cd packages/mcp
docker build -t anaella-mcp:local .
docker run -d -p 3000:3000 -e ANAELLA_API_URL=https://api.anaella.com anaella-mcp:local
curl http://localhost:3000/health   # -> ok

The container runs the Streamable HTTP server (node dist/http.js), exposing GET /health and POST /mcp (requires Authorization: Bearer ana_...).