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

@devicesdk/mcp

v0.2.0

Published

Model Context Protocol server for DeviceSDK — gives AI agents tools to deploy, flash, inspect, and query DeviceSDK projects.

Readme

@devicesdk/mcp

Model Context Protocol server for DeviceSDK. Lets AI coding agents (Claude Desktop, Claude Code, Cursor, Continue.dev, etc.) drive your DeviceSDK projects: list devices, deploy scripts, flash firmware, tail logs, manage env vars.

Install

npx -y @devicesdk/mcp --version

You don't usually run it directly — it's launched by your MCP-aware tool. Add this to .mcp.json in your project (or wherever your tool reads MCP config):

{
  "mcpServers": {
    "devicesdk": {
      "command": "npx",
      "args": ["-y", "@devicesdk/mcp"]
    }
  }
}

devicesdk init writes this file for you when scaffolding a new project.

Authentication

The server inherits the CLI's auth: it reads ~/.devicesdk/auth.json (created by devicesdk login). If you set DEVICESDK_TOKEN in the environment, that takes precedence — useful in CI or when you want a tighter-scoped token for your agent.

Tools exposed

| Tool | What it does | |------|--------------| | devicesdk_whoami | Show the currently-authenticated user. | | devicesdk_status | List devices in a project with their connection state. | | devicesdk_logs_tail | Fetch the last N log entries for a device. | | devicesdk_env_list | List env var keys for a project (values never returned). | | devicesdk_env_set | Set one or more env vars on a project. | | devicesdk_deploy | Build + deploy device scripts. | | devicesdk_docs_search | Resolve a query to a docs URL on devicesdk.com. |

Each tool wraps the equivalent devicesdk <cmd> --json invocation, so the agent gets the same { success, result | error } shape returned by the CLI.

Full docs

The complete reference — install snippets per MCP host (Claude Desktop, Claude Code, Cursor, Continue.dev, Windsurf), auth model, troubleshooting — lives at https://devicesdk.com/docs/mcp/.

See also