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

@agent-context-kit/toolshed-server

v0.1.50

Published

MCP Toolshed server for agent-context-kit

Readme

@agent-context-kit/toolshed-server

stdio MCP server for agent-context-kit: reads your project’s manifest.yaml and serves L0/L1/L2 context as tools so LLMs fetch only what they need (Stripe-style Toolshed pattern).

Requirements: Node.js 18+. Run from the directory that contains manifest.yaml (or pass --manifest). Optional --profile <name> merges profiles.<name> from the manifest.

Install

npm install -g @agent-context-kit/toolshed-server

Or use with npx (no global install):

npx @agent-context-kit/toolshed-server

Usage

From your project root (where manifest.yaml lives):

toolshed-server
# or
npx @agent-context-kit/toolshed-server

Custom manifest path:

toolshed-server --manifest ./path/to/manifest.yaml

Profile (manifest deep-merge):

toolshed-server --profile backend

Paths inside manifest.yaml are resolved relative to the manifest file’s directory.

MCP client (e.g. Cursor, Claude Desktop)

Use an absolute path to manifest.yaml in the args — this is the most reliable approach regardless of which directory the editor starts the process from:

{
  "mcpServers": {
    "toolshed": {
      "command": "npx",
      "args": [
        "-y",
        "@agent-context-kit/toolshed-server",
        "--manifest",
        "/absolute/path/to/your/project/manifest.yaml"
      ]
    }
  }
}

npx @agent-context-kit/cli setup generates this file automatically with the correct absolute path.

Add "--profile", "frontend" to args for a named profile.

If tool names clash with another server, set toolshed.tool_aliases in manifest.yaml.

Tools exposed

Read context

| Tool | Purpose | | ----------------------------- | -------------------------------------------------- | | get_project_identity | L0: values, architecture, glossary | | get_guardrails | Blocked actions, approval list, allowed domains | | get_rules | L1: policy + standards | | get_learnings | L2: key learnings | | get_spec | Feature spec from registry | | list_registry | Feature list + status | | lookup_glossary | Term lookup | | get_prompt / list_prompts | Prompt templates (get_prompt supports variables) | | search_context | Search configured context paths |

Validate & persist

| Tool | Purpose | | ----------------------- | ----------------------------------------- | | validate_context | Verify manifest paths exist | | add_learning | Append to key-learnings.md | | add_glossary_term | Append to glossary.md | | update_feature_status | Update registry status in manifest.yaml |

Safety & verification

| Tool | Purpose | | ------------------------ | --------------------------------------------------- | | request_human_approval | Structured approval request | | verify_action | Post-condition checks (files, commands, HTTP, JSON) |

The same surface is available from @agent-context-kit/langchain via createContextKitTools().

Scaffold a project

Use @agent-context-kit/cli (context-kit init) to generate manifest.yaml and docs/ from the official template.

License

MIT