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

@truescreen/mcp

v1.0.0

Published

TrueScreen MCP stdio server (local tools + Public API via TRUESCREEN_API_KEY)

Readme

TrueScreen MCP Server

Local MCP server for the TrueScreen Public API.

This package runs as a local stdio MCP server and is designed to be launched by MCP clients such as Cursor or Claude Desktop. It gives AI clients access to curated TrueScreen tools for:

  • credits and certification status,
  • hash certifications,
  • file certifications using files on your machine,
  • template discovery,
  • True Flow creation,
  • True Flow attachment upload.

Public documentation: TrueScreen MCP integration guide.

Requirements

  • Node.js >= 20
  • A valid TrueScreen API key
  • An MCP client that supports stdio

Important

Use this package as a command executed by your MCP client.

In normal usage, you do not add it to your application with:

npm i @truescreen/mcp

Instead, configure your MCP client to run:

npx -y @truescreen/mcp

Configuration

This package reads configuration from environment variables:

  • TRUESCREEN_API_KEY required. Used for Public API calls.
  • MCP_ENV optional. Supported values: stg, prod. If unset, production is used.

The API key can be provided either as the raw key or as a full Bearer value. For example, both of these work:

TRUESCREEN_API_KEY=abc...
TRUESCREEN_API_KEY=Bearer abc...

Cursor

Add the following to your mcp.json:

{
  "mcpServers": {
    "truescreen-local": {
      "command": "npx",
      "args": ["-y", "@truescreen/mcp"],
      "env": {
        "TRUESCREEN_API_KEY": "abc..."
      }
    }
  }
}

Cursor with staging

{
  "mcpServers": {
    "truescreen-local": {
      "command": "npx",
      "args": ["-y", "@truescreen/mcp"],
      "env": {
        "TRUESCREEN_API_KEY": "abc...",
        "MCP_ENV": "stg"
      }
    }
  }
}

Claude Desktop

Add the same server definition to claude_desktop_config.json:

{
  "mcpServers": {
    "truescreen-local": {
      "command": "npx",
      "args": ["-y", "@truescreen/mcp"],
      "env": {
        "TRUESCREEN_API_KEY": "abc..."
      }
    }
  }
}

Zed

Add the following to your settings.json:

{
  "context_servers": {
    "truescreen-local": {
      "command": {
        "path": "npx",
        "args": ["-y", "@truescreen/mcp"],
        "env": {
          "TRUESCREEN_API_KEY": "abc..."
        }
      },
      "settings": {}
    }
  }
}

GitHub Copilot CLI

Add the server to ~/.copilot/mcp-config.json:

{
  "mcpServers": {
    "truescreen-local": {
      "command": "npx",
      "args": ["-y", "@truescreen/mcp"],
      "env": {
        "TRUESCREEN_API_KEY": "abc..."
      }
    }
  }
}

What this package exposes

  • truescreen_get_credits
  • truescreen_list_templates
  • truescreen_create_true_flow
  • truescreen_create_hash_certification
  • truescreen_get_certification
  • truescreen_wait_for_certification
  • truescreen_create_file_certification_attachments
  • truescreen_upload_file
  • truescreen_create_file_certification
  • truescreen_create_true_flow_attachment

MCP to REST mapping

| MCP tool | REST call | |----------|-----------| | truescreen_get_credits | GET /v1/credits | | truescreen_list_templates | GET /v1/templates | | truescreen_create_true_flow | POST /v1/true-flows | | truescreen_create_hash_certification | POST /v1/hash-certifications | | truescreen_get_certification | GET /v1/certifications/{reportId} | | truescreen_wait_for_certification | polling GET /v1/certifications/{reportId} | | truescreen_create_file_certification_attachments | POST /v1/file-certifications-attachments | | truescreen_upload_file | PUT presigned upload URL | | truescreen_create_file_certification | POST /v1/file-certifications | | truescreen_create_true_flow_attachment | POST /v1/true-flows-attachments plus upload |

Notes

  • This package uses stdio transport only.
  • The MCP client starts the process for you.
  • File upload tools are available only in this local package because they require access to local file paths.