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

@sentry/junior-datadog

v0.30.0

Published

> [!WARNING] > **This plugin does not currently work.** Datadog's hosted MCP server requires OAuth Dynamic Client Registration (DCR, [RFC 7591](https://www.rfc-editor.org/rfc/rfc7591)) for third-party clients like Junior, and DCR is locked down on Datadog

Readme

@sentry/junior-datadog

[!WARNING] This plugin does not currently work. Datadog's hosted MCP server requires OAuth Dynamic Client Registration (DCR, RFC 7591) for third-party clients like Junior, and DCR is locked down on Datadog's side. Until Datadog exposes DCR (or an equivalent registration path) on mcp.datadoghq.com, Junior cannot complete the OAuth handshake and every Datadog tool call will fail.

The package is kept in-tree so the integration is ready to ship the moment Datadog unblocks DCR. Do not add it to a production deployment in the meantime.

@sentry/junior-datadog adds read-only Datadog telemetry workflows to Junior through Datadog's hosted MCP server.

Install it alongside @sentry/junior:

pnpm add @sentry/junior @sentry/junior-datadog

Then register the plugin package in juniorNitro(...):

juniorNitro({
  pluginPackages: ["@sentry/junior-datadog"],
});

This package does not use DD_API_KEY, DD_APP_KEY, or a shared workspace integration. Each user connects their own Datadog account the first time Junior calls a Datadog MCP tool. Junior sends the OAuth link privately and resumes the thread automatically after the user authorizes.

Junior intentionally keeps this package read-only by limiting the MCP tool surface to search, fetch, and log analytics tools. The plugin does not expose notebook writes, monitor edits, or other mutating Datadog tools.

Datadog site

The packaged manifest defaults to the US1 endpoint (mcp.datadoghq.com) and enables the core, apm, and error-tracking toolsets. Teams on other Datadog sites (US3, US5, EU, AP1, AP2, GovCloud) set DATADOG_SITE in their Junior deployment env to their site host (e.g. us5.datadoghq.com, datadoghq.eu, ddog-gov.com). No code changes or plugin copy needed. See the Datadog plugin docs for the full site table.

Optional channel defaults

If a Slack channel usually investigates the same Datadog environment or service, store that as a conversation-scoped default:

jr-rpc config set datadog.env prod
jr-rpc config set datadog.service checkout

These defaults are optional fallbacks. If a user names a different env or service in a request, Junior should follow the explicit request instead.

Auth model

  • Datadog MCP requires user-based OAuth (OAuth 2.1 + PKCE) and does not accept shared bearer tokens here.
  • This package is not suitable for fully headless or unattended automation.
  • Users can disconnect from Junior App Home with Unlink, or by asking Junior to disconnect Datadog.

Full setup guide: https://junior.sentry.dev/extend/datadog-plugin/