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

@workisgood/quarkie-mcp

v0.1.0

Published

MCP server for Quarkie — manage agents, configs, and team from Claude, Cursor, or any MCP client

Readme

Quarkie MCP

MCP bridge for Quarkie -- manage AI agents, team members, absences, and more from Claude, Cursor, or any MCP-compatible client.

This package is a lightweight stdio-to-HTTP proxy. It forwards JSON-RPC messages between your MCP client and the Quarkie server, injecting your API key automatically. Zero dependencies, zero config files.

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "quarkie": {
      "command": "npx",
      "args": ["-y", "@workisgood/quarkie-mcp"],
      "env": {
        "QUARKIE_API_KEY": "your-personal-access-token"
      }
    }
  }
}

Claude Code

claude mcp add quarkie -- npx -y @workisgood/quarkie-mcp

Then set the environment variable before running Claude Code:

export QUARKIE_API_KEY="your-personal-access-token"

Cursor

Add to your Cursor MCP settings:

{
  "mcpServers": {
    "quarkie": {
      "command": "npx",
      "args": ["-y", "@workisgood/quarkie-mcp"],
      "env": {
        "QUARKIE_API_KEY": "your-personal-access-token"
      }
    }
  }
}

Smithery

smithery badge

npx -y @smithery/cli install @workisgood/quarkie-mcp --client claude

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | QUARKIE_API_KEY | Yes | Your Personal Access Token | | QUARKIE_URL | No | API base URL (defaults to Quarkie Cloud) |

Available Tools

The tools are defined on the Quarkie server and delivered dynamically via MCP. The current set includes:

| Tool | Description | |------|-------------| | quarkie_list_agents | List all registered agents | | quarkie_get_agent | Get agent details | | quarkie_create_agent | Register a new agent (returns API key) | | quarkie_toggle_agent | Enable or disable an agent | | quarkie_delete_agent | Delete an agent | | quarkie_regenerate_key | Revoke all keys and generate a new one | | quarkie_read_config | Read agent config file (SOUL.md, IDENTITY.md, etc.) | | quarkie_update_config | Update agent config file | | quarkie_dispatch | Send an instruction to an agent | | quarkie_list_admins | List org-wide agent admins | | quarkie_update_admins | Set agent admins | | quarkie_list_managers | List per-agent managers | | quarkie_update_managers | Set per-agent managers | | quarkie_list_team | List all human team members | | quarkie_list_absences | List all absences (calendar view) | | quarkie_my_vacation_info | Get vacation balance for an employee | | quarkie_schedule_absence | Request time off | | quarkie_approve_absence | Approve or reject an absence request | | quarkie_vacation_requests_summary | Org-wide vacation requests overview | | quarkie_absence_types | List available absence types |

Getting an API Key

  1. Sign in to Quarkie
  2. Go to Settings > Personal Access Tokens
  3. Create a new token and copy it
  4. Set it as the QUARKIE_API_KEY environment variable

How It Works

This package runs as a stdio MCP server. It reads JSON-RPC messages from stdin, forwards them to the Quarkie API over HTTP (with your API key in the X-API-Key header), and writes responses back to stdout. It supports both plain JSON and Server-Sent Events responses from the server.

No SDK dependencies are needed -- the bridge uses only Node.js built-in modules.

License

MIT