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

workbook-mcp

v0.2.0

Published

MCP server for Deltek Workbook — manage time entries from Claude Code

Readme

workbook-mcp

Local MCP server for Deltek Workbook — manage time entries from Claude Code.

Prerequisites

  • Node.js 22+
  • Google Chrome or Microsoft Edge installed
  • A Workbook account using Okta SSO

Install

The server is published to npm, so there's nothing to clone or build. Register it with Claude Code, replacing the tenant URL with your own:

claude mcp add workbook -- cmd /c npx -y workbook-mcp@latest --tenant https://merkle-ne.workbook.net

The -- after claude mcp add passes the rest of the command verbatim to the spawned process — without it, the --tenant flag would be consumed by claude mcp itself.

Or, if your project already includes a .mcp.json, just open it in Claude Code and approve the trust prompt — the entry looks like this:

{
  "mcpServers": {
    "workbook": {
      "type": "stdio",
      "command": "cmd",
      "args": ["/c", "npx", "-y", "workbook-mcp@latest", "--tenant", "https://merkle-ne.workbook.net"]
    }
  }
}

On macOS/Linux, drop the cmd /c and use "command": "npx" directly.

First use

Just ask Claude to do something Workbook-related — for example:

"Show me my pinned Workbook tasks for this week."

The first time, a Chrome window will open for Okta SSO. Complete sign-in (and 2FA if prompted); the window closes itself once authenticated and the tool returns its result. Your session is remembered after that. When cookies eventually expire, the next tool call transparently re-opens the browser — which usually auto-completes because your persistent profile remembers Okta.

Tools

| Tool | What it does | |---|---| | list_my_tasks | Your weekly timesheet rows (each with a pinned flag, plus job/task/activity IDs) | | create_time_entry | Register a new entry. Supports dryRun: true to preview the payload without sending. | | update_time_entry | Update fields on an existing entry by ID | | workbook_session_status | Active health check — is auth alive? | | workbook_refresh_session | Manually re-authenticate (otherwise auto-triggered on expiry) | | workbook_session_info | Local diagnostic — what's loaded? (no API call) |

Data location

Persistent state lives in ~/.workbook-mcp/:

  • storageState.json — captured cookies
  • workbook-config.json — cached resource ID
  • browser-profile/ — persistent Chrome profile that remembers Okta between captures
  • metadata/ — Workbook API metadata (only present if you ran capture with --metadata)

Safe to delete the whole directory if you want a fully fresh start.

Troubleshooting

  • MCP server won't register — make sure claude mcp add includes the -- separator and that the tenant URL is correct.
  • No browser opens on first use — install Chrome or Edge. As a fallback, run npx playwright install chromium once to install a bundled Chromium browser.
  • "Session expired" persists after auto-refresh — clone the repo and run npm run capture -- --tenant <url> from a terminal to see the capture flow directly; that often surfaces network, proxy, or Okta issues that aren't visible through Claude Code.
  • Wrong tenant — if you registered with the wrong --tenant, run claude mcp remove workbook then re-add with the correct URL.

Developing

If you want to hack on the server itself:

git clone https://github.com/APMerkle/workbook-mcp.git
cd workbook-mcp
npm install
npm run build

Point Claude Code at your local build instead of the published package:

claude mcp add workbook-dev -- node "C:\path\to\workbook-mcp\dist\index.js" --tenant https://merkle-ne.workbook.net

The capture flow can also be triggered manually from a terminal:

npm run capture -- --tenant https://merkle-ne.workbook.net

Add --metadata to also re-download the Workbook API metadata (only needed if extending the project):

npm run capture -- --tenant https://merkle-ne.workbook.net --metadata

Publishing a new version

# bump the version in package.json, then:
npm publish

prepublishOnly runs tsc automatically, so dist/ is always fresh on publish. Colleagues using workbook-mcp@latest in their .mcp.json pick up the new version on the next Claude Code session.