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

@ourthinktank/founders-os

v1.0.0

Published

MCP server for Founders OS — CRM, tasks, finances, feeds, memory, and visual surfaces from any MCP-compatible AI tool.

Readme

Founders OS

Open-source MCP server for startup and small business founders.

Founders OS gives you a complete business context - CRM, projects, tasks, finances, feeds, memory, playbooks - accessible from Claude, Cursor, or any MCP-compatible AI client. One connection, your entire business.

Built by OurThinkTank. Docs and setup wizard at foundersmcp.com. Source on GitHub.

92 tools across 12 modules: CRM, tasks, projects, playbooks, tags, financial ledger with P&L, RSS/Atom feeds, semantic memory (pgvector), cross-domain surfaces, members, audit + restore, and diagnostics.

Quick start

You need a Supabase project, an embedding API key (OpenAI by default), and an MCP-capable AI client.

  1. Database - the wizard at foundersmcp.com/setup hands you a ready-to-run setup.sql matched to your embedding provider. Run it once in your Supabase SQL Editor.

  2. Client config - the same wizard generates this filled in, or paste it into your client's mcp.json by hand:

{
  "mcpServers": {
    "founders-os": {
      "command": "npx",
      "args": ["-y", "@ourthinktank/founders-os@latest"],
      "env": {
        "SUPABASE_URL": "https://your-project.supabase.co",
        "SUPABASE_SECRET_KEY": "sb_secret_...",
        "FOUNDERS_OS_COMPANY_ID": "your-company",
        "FOUNDERS_OS_USER_ID": "your-name",
        "FOUNDERS_OS_TIMEZONE": "America/Los_Angeles",
        "EMBEDDING_PROVIDER": "openai",
        "EMBEDDING_MODEL": "text-embedding-3-small",
        "EMBEDDING_DIM": "1536",
        "OPENAI_API_KEY": "sk-..."
      }
    }
  }
}
  1. Try it - restart your client and ask:
What can you do?
Catch me up
Add Acme Corp as a new prospect
Create a task to send the proposal by Friday
What's stuck or overdue?
Show me OTT's P&L for Q1

OpenAI, AWS Bedrock, and Ollama are supported as embedding providers. Full environment-variable reference, tool docs, and recipes: foundersmcp.com/docs.

Staying up to date

The get_version tool reports the running version, the latest published release, how to upgrade, and whether your database schema matches the server (with the exact migration files to run when it doesn't). Set it up as a scheduled check and forget about versions.

License

MIT (c) OurThinkTank