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 🙏

© 2025 – Pkg Stats / Ryan Hefner

ucm-mcp-server

v4.3.2

Published

Universal Context Manager MCP Server - AI Productivity Platform

Downloads

296

Readme

UCM MCP Server

Universal Context Manager (UCM) Model Context Protocol (MCP) server for AI-native package management.

Get your auth token from https://ucm.utaba.ai

Configuration

  • --auth-token <token> (required): Authentication token in format {authorid}:{apikey}

Available MCP Tools

The server provides 11 MCP tools following the ucm_ naming convention:

System Tools

  • ucm_health_check - Check MCP server and UCM API connectivity
  • ucm_connect - Get the UCM quickstart guide (Tell your AI to load this first)

Discovery Tools

  • ucm_get_author_index - Generate dynamic markdown index for an author
  • ucm_list_repositories - List all repositories for an author
  • ucm_list_artifacts - Browse the 4-level hierarchy

Artifact Management

  • ucm_get_artifact - Retrieve artifact content with auto-chunking
  • ucm_get_chunk - Get chunks of large responses
  • ucm_publish_artifact - Create/update artifacts
  • ucm_publish_artifact_fromfile - File-based publishing (preferred for large files)
  • ucm_delete_artifact - Remove artifacts
  • ucm_get_artifact_versions - Get version history

Usage with Claude Desktop

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "ucm": {
      "command": "npx",
      "args": [
        "ucm-mcp-server",
        "--auth-token", "YOUR_AUTH_TOKEN"
      ]
    }
  }
}

Usage with Claude Code

claude mcp add -s user ucm-mcp-server npx ucm-mcp-server --auth-token your-authtoken-here

Note: The above adds it to your user scope and will be available in all of your projects. You can remove -s user for project scope.

Documentation

For detailed documentation, visit:

  • UCM Platform: https://ucm.utaba.ai
  • GitHub: https://github.com/utaba/ucm-mcp-server

License

BSD-3-Clause - See LICENSE file for details