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

@outfeedai/mcp-server

v1.0.0

Published

MCP server for Outfeed.ai — schedule and publish to 9 social platforms from any AI assistant

Readme

@outfeedai/mcp-server

MCP server for Outfeed.ai — schedule and publish to 9 social media platforms from any AI assistant.

Supported Platforms

Instagram, Facebook, TikTok, YouTube, X (Twitter), LinkedIn, Threads, Pinterest, Bluesky

Quick Start

OUTFEED_API_KEY=ofd_live_xxx npx @outfeedai/mcp-server

Setup

1. Get an API Key

  1. Sign up at outfeed.ai
  2. Go to Settings → API Keys
  3. Click Create Key and copy it

2. Configure Your AI Host

Claude Desktop

Add to ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "outfeed": {
      "command": "npx",
      "args": ["-y", "@outfeedai/mcp-server"],
      "env": {
        "OUTFEED_API_KEY": "ofd_live_your_key_here"
      }
    }
  }
}

Claude Code

claude mcp add outfeed -- npx -y @outfeedai/mcp-server
# Then set the env var in your shell or .env
export OUTFEED_API_KEY=ofd_live_your_key_here

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "outfeed": {
      "command": "npx",
      "args": ["-y", "@outfeedai/mcp-server"],
      "env": {
        "OUTFEED_API_KEY": "ofd_live_your_key_here"
      }
    }
  }
}

Open WebUI / LibreChat

Use the MCP bridge plugin and point it to:

npx @outfeedai/mcp-server

With OUTFEED_API_KEY set in the environment.

Available Tools

| Tool | Description | |------|-------------| | listAccounts | List connected social media accounts | | getAccount | Get account profile details | | createDraft | Create a new post draft | | schedulePost | Schedule a post for future publishing | | publishPost | Publish a post immediately | | updatePost | Edit a draft's content or accounts | | cancelScheduledPost | Cancel a scheduled post | | listPosts | List and filter posts | | getPost | Get a post by ID | | bulkCreateDrafts | Create multiple drafts at once | | bulkSchedule | Schedule multiple posts with dates | | listMedia | List uploaded media | | getMedia | Get media details | | deleteMedia | Delete a media file | | createUploadSession | Get a signed upload URL | | confirmUpload | Confirm an upload | | uploadMediaFromUrl | Import media from a URL | | retryFailedPost | Retry a failed publish | | listAccountGroups | List account groups |

Examples

Create and schedule a post

You: Create a post about our summer sale for Instagram and Facebook, schedule it for tomorrow at 1pm

The AI will:

  1. Call listAccounts to find your IG + FB accounts
  2. Call createDraft with the content and account IDs
  3. Call schedulePost with tomorrow at 1pm

Bulk create content

You: Create 10 funny posts about tech for all my accounts, schedule one per day starting Monday at 9am

The AI will:

  1. Call listAccounts to get all account IDs
  2. Call bulkCreateDrafts with 10 unique posts
  3. Call bulkSchedule with computed dates (Mon-Fri, skipping weekends)

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | OUTFEED_API_KEY | Yes | — | Your Outfeed API key (ofd_live_...) | | OUTFEED_API_URL | No | https://api.outfeed.ai/api | Custom API URL (for self-hosted) |

REST API

The MCP server calls the Outfeed REST API under the hood. You can also use the API directly:

License

MIT