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

@shinzolabs/shinzo-mcp

v0.0.0

Published

MCP server for the Shinzo AI platform for agent orchestration and analytics

Readme

Shinzo MCP Server

npm version GitHub stars GitHub forks npm downloads

A comprehensive MCP (Model Context Protocol) server for the Shinzo AI platform. This server enables AI assistants like Claude to interact with Shinzo's Spotlight analytics and agent management capabilities.

Features

  • Spotlight Analytics - Access AI token usage analytics and session data
  • Agent Management - Create, configure, and manage AI agents
  • Agent Filesystem - Full filesystem operations for agent workspaces

Prerequisites

You'll need a Shinzo account and API key. Sign up at shinzo.ai to get started.

Installation

Option 1: Smithery Remote Server (Recommended)

Install directly via Smithery CLI:

npx -y @smithery/cli install @shinzo-labs/shinzo-mcp --client claude

Option 2: NPX Local Installation

Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "shinzo": {
      "command": "npx",
      "args": ["-y", "@shinzolabs/shinzo-mcp"],
      "env": {
        "SHINZO_API_KEY": "your-api-key"
      }
    }
  }
}

Option 3: Build from Source

git clone https://github.com/shinzo-labs/shinzo-mcp.git
cd shinzo-mcp
npm install
npm run build

Then configure Claude Desktop:

{
  "mcpServers": {
    "shinzo": {
      "command": "node",
      "args": ["/path/to/shinzo-mcp/dist/index.js"],
      "env": {
        "SHINZO_API_KEY": "your-api-key"
      }
    }
  }
}

Configuration

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | SHINZO_API_KEY | Yes | - | Your Shinzo platform API key | | SHINZO_API_URL | No | https://api.shinzo.ai | Shinzo API base URL | | MCP_TRANSPORT | No | stdio | Transport mode: stdio for local MCP clients, http for Smithery/cloud deployments | | TELEMETRY_ENABLED | No | true | Enable/disable telemetry | | PORT | No | 3000 | HTTP server port (only used when MCP_TRANSPORT=http) |

Supported Tools

Spotlight Analytics (spotlight:read)

| Tool | Description | |------|-------------| | get_token_analytics | Get AI token usage analytics | | list_ai_sessions | List AI interaction sessions | | get_session_details | Get detailed session information |

Agent Management (agent:read, agent:write)

| Tool | Scope | Description | |------|-------|-------------| | list_agents | read | List all configured agents | | get_agent | read | Get agent details | | get_agent_task | read | Get task information | | create_agent | write | Create a new agent | | update_agent | write | Update agent configuration | | delete_agent | write | Delete an agent | | pause_agent | write | Pause agent execution | | resume_agent | write | Resume paused agent | | submit_agent_task | write | Submit a task to an agent | | send_task_message | write | Send message to running task | | cancel_task | write | Cancel a running task |

Agent Filesystem (agent:filesystem:read, agent:filesystem:write)

| Tool | Scope | Description | |------|-------|-------------| | read_agent_file | read | Read file contents | | list_agent_directory | read | List directory contents | | get_file_metadata | read | Get file/directory metadata | | create_agent_file | write | Create a new file | | update_agent_file | write | Update file contents | | delete_agent_file | write | Delete a file | | patch_agent_file | write | Partial file update | | create_agent_directory | write | Create a directory | | delete_agent_directory | write | Delete a directory | | copy_agent_path | write | Copy files/directories | | move_agent_path | write | Move files/directories | | search_agent_filesystem | write | Search filesystem | | create_agent_archive | write | Create archive | | extract_agent_archive | write | Extract archive | | update_file_metadata | write | Update file metadata |

Usage Examples

Manage Agents

Ask Claude: "Create a new agent called 'data-processor' with my Anthropic API key"

Check Analytics

Ask Claude: "What's my AI token usage for the past week?"

List Sessions

Ask Claude: "Show me my recent AI interaction sessions"

Contributing

We welcome contributions! Please see CONTRIBUTING.md for guidelines.

Data Collection & Privacy

This MCP server includes optional telemetry to help improve the service. See PRIVACY.md for details.

License

MIT License - see LICENSE for details.