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

agentreacher

v0.12.0

Published

Connect your AI to social media. Open-source platform for AI agents.

Downloads

1,301

Readme

AgentReacher

agentreacher.com

AgentReacher connects your AI to social media. Open-source platform for AI agents.

The product is intentionally split into two layers:

  • the fully open-source product in this repository
  • a hosted service layer for managed execution, connected accounts, analytics, and convenience

Social Integrations

| Platform | Status | | ----------- | ------ | | X (Twitter) | ✅ | | LinkedIn | ✅ | | Bluesky | ✅ | | Instagram | ⏳ | | TikTok | ⏳ | | YouTube | ⏳ | | Facebook | ⏳ | | Threads | ⏳ | | Pinterest | ⏳ |

What is in this repo

  • TanStack Start app for AgentReacher
  • auth, billing, onboarding, workspace, and dashboard flows
  • MCP server and CLI
  • multi-platform social connection and publishing flows
  • post creation, scheduling, and publishing APIs
  • basic analytics and calendar views

Open Source vs Hosted

Everything in AgentReacher is open source in this repository.

The hosted service exists for users who want the completed product experience without assembling the infrastructure themselves.

The hosted layer primarily adds:

  • managed deployment and operations
  • connected account setup in a ready-to-use product
  • managed credentials and third-party service configuration
  • convenience, reliability, and reduced setup time

You can self-host the full product, but you will need your own accounts, credentials, and infrastructure for the third-party services AgentReacher integrates with.

Stack

  • React 19
  • TanStack Start
  • Cloudflare Workers
  • InstantDB
  • Better Auth
  • Stripe
  • MCP SDK

Getting started

Prerequisites

  • Node.js 22+
  • pnpm
  • an InstantDB app and admin token

Local development

  1. Install dependencies:
pnpm install
  1. Copy the environment template:
cp .env.example .env.local
  1. Fill in the required values in .env.local.

At minimum, local development expects:

  • VITE_INSTANT_APP_ID
  • INSTANT_APP_ADMIN_TOKEN
  • BETTER_AUTH_SECRET
  • BETTER_AUTH_URL
  • VITE_BETTER_AUTH_URL
  1. Start the app:
pnpm dev

MCP CLI

The package exposes an agentreacher CLI for MCP setup.

Initialize MCP config

npx -y agentreacher@latest init

If you install AgentReacher directly from an MCP registry, you can usually skip manual API key setup. On first use, the server opens a browser and walks you through sign-in automatically.

For local development inside this repository:

node bin/agentreacher.mjs init

There is a sanitized example config at .mcp.json.example.

Available MCP tools

  • list_connected_social_accounts
  • get_social_connection_oauth_url
  • connect_bluesky_account
  • instagram_publish_media
  • create_text_post
  • create_image_post
  • upload_media
  • schedule_post
  • publish_post_now
  • list_posts
  • submit_feedback

The tool schema is defined in src/lib/agent-mcp-spec.json.

Current limitations and notes

  • some providers have provider-specific media and OAuth constraints
  • self-hosting requires your own platform app credentials and API configuration
  • media publishing flows depend on publicly reachable assets where the provider requires them
  • media must be reachable at a public http or https URL
  • Instagram video publishing uses the Reels flow
  • Bluesky uses direct account connection instead of OAuth

Deployment

For self-hosting:

  • set Cloudflare Worker secrets separately from wrangler.jsonc
  • replace placeholder vars and routes in wrangler.jsonc
  • configure your own InstantDB, Stripe, Better Auth providers, Resend, Upstash, OpenAI, Runware, and social platform apps as needed

Project policy