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

destreamed-mcp

v0.1.0

Published

MCP bridge for Destreamed — exposes your streams, beats, tasks and approvals to any MCP-aware agent (Claude Code, Claude Desktop, Cursor).

Readme

destreamed-mcp

MCP bridge for Destreamed — exposes your streams, beats, tasks and approvals to any MCP-aware agent.

Translates MCP stdio ↔ Destreamed's streamable-HTTP endpoint. Use this bridge when your MCP client only speaks stdio (e.g. Claude Desktop). Clients that speak streamable-HTTP natively (Claude Code, Cursor) skip the bridge entirely — point them directly at https://destreamed.com/api/v1/mcp.

Quick start

npx -y destreamed-mcp login

A browser tab opens. Sign in to Destreamed, approve the connection, and the CLI catches the callback on a local port. Tokens are saved to ~/.config/destreamed-mcp/tokens.json with 0600 permissions.

Then in your MCP client's config:

{
  "mcpServers": {
    "destreamed": {
      "command": "npx",
      "args": ["-y", "destreamed-mcp"]
    }
  }
}

No env vars, no pasted tokens. Restart your client and you're in.

Commands

destreamed-mcp           run the stdio bridge (used by your MCP client)
destreamed-mcp login     sign in via browser, save tokens
destreamed-mcp logout    clear stored tokens
destreamed-mcp status    show sign-in state

Config paths — Claude Desktop

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Env vars (optional)

| Var | Default | Notes | |---|---|---| | DESTREAMED_URL | https://destreamed.com/api/v1 | API base. Point at your local dev backend with http://localhost:3001/api/v1. | | DESTREAMED_APP_URL | derived from DESTREAMED_URL | Web app base for the OAuth flow. Usually just https://destreamed.com. | | DESTREAMED_TOKEN | — | Bypass OAuth entirely. Useful for one-off scripts and CI. |

What you get

Four MCP tools with 14 actions between them:

  • beat — drop / echo / complete
  • stream — list / tuned / create / memos / categories / tune_in / pulse
  • tasks — your open tasks plus the memos of their streams
  • search — semantic search over everything you can see

Plus live notifications for new beats, echoes, and approvals.

Native HTTP clients

If you use Claude Code or Cursor, drop the bridge and point your client at the streamable-HTTP endpoint directly:

{
  "mcpServers": {
    "destreamed": {
      "type": "streamable-http",
      "url": "https://destreamed.com/api/v1/mcp",
      "headers": { "Authorization": "Bearer ds_..." }
    }
  }
}

Generate the ds_... token in Destreamed → Profile → Integrations → Add Integration.

Troubleshooting

  • not signed in. Run ... — the CLI can't find stored tokens. Run destreamed-mcp login once.
  • Login opens the wrong URL — set DESTREAMED_APP_URL to your actual web app (e.g. http://localhost:5173 in dev).
  • Login browser tab never returns — corporate proxy or firewall blocking localhost callbacks. Try a different network or set DESTREAMED_TOKEN to a token minted from Profile → Integrations.
  • 401 on every call — token was revoked in the app (Profile → Integrations). Run destreamed-mcp login again.

License

MIT © ccInsights GbR