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

agentkit-mcp

v0.1.0

Published

MCP server exposing coderace, agentmd, agentlint, and agentreflect as tools for Claude Code and MCP clients

Readme

agentkit-mcp

Works with Claude Code npm version License: MIT

MCP server that exposes the agent quality quartetcoderace, agentmd, agentlint, agentreflect — as tools inside Claude Code and any MCP-compatible client.

No context-switching. Run multi-agent code races, generate CLAUDE.md, lint diffs, and reflect on agent failures — all from within your AI coding session.

Prerequisites

Install the four Python CLIs:

pip install coderace agentmd-gen ai-agentlint ai-agentreflect

Or with pipx (recommended):

pipx install coderace
pipx install agentmd-gen
pipx install ai-agentlint
pipx install ai-agentreflect

Install

npm install -g agentkit-mcp

Or use directly without installing via npx agentkit-mcp.

Configure

Claude Code

claude mcp add agentkit-mcp npx agentkit-mcp

Manual .mcp.json

{
  "mcpServers": {
    "agentkit": {
      "command": "npx",
      "args": ["agentkit-mcp"]
    }
  }
}

Place this file in your project root or ~/.claude/.

Tools

coderace_race

Run a multi-agent coding race on a repository.

repo_path   (required)  Absolute path to the repository root
agents      (optional)  Comma-separated agent names: "codex,claude"
task        (optional)  Task description to pass to agents

Example prompt in Claude Code:

"Run a coderace race on /Users/me/myrepo with agents codex,claude to implement a binary search function."


coderace_review

Multi-lane AI code review on staged changes or a branch diff.

repo_path      (required)  Absolute path to the repository root
diff_source    (optional)  staged | branch | diff
lanes          (optional)  Comma-separated lane names
cross_reviewers (optional) Number of cross-reviewers

Example:

"Review the staged changes in /Users/me/myrepo using coderace_review."


agentmd_generate

Generate a CLAUDE.md / AGENTS.md from a repository. Inspects code structure, dependencies, and conventions.

repo_path  (required)  Absolute path to the repository root
output     (optional)  Output file path (default: CLAUDE.md in repo root)
minimal    (optional)  Generate a minimal file
tiered     (optional)  Generate a tiered/layered file

Example:

"Generate a CLAUDE.md for /Users/me/myrepo."


agentmd_diff

Show a diff between the current CLAUDE.md and a freshly generated one. Spot what's gone stale.

repo_path  (required)  Absolute path to the repository root
output     (optional)  Output file path

agentlint_check

Lint a git diff for agent-safety issues: missing context, ambiguous instructions, prompt-injection risks.

diff  (required)  Git diff content (paste text) OR path to a .diff file

Example:

"Lint this diff with agentlint_check: "


agentlint_check_context

Lint an AGENTS.md or CLAUDE.md for freshness, completeness, and structural quality. Returns a freshness score and actionable suggestions.

file  (required)  Path to AGENTS.md or CLAUDE.md

Example:

"Check if my AGENTS.md at /Users/me/myrepo/AGENTS.md is up to date."


agentreflect_generate

Generate agent improvement suggestions from notes, pytest output, or git history. Optionally apply them to AGENTS.md / CLAUDE.md.

from_notes   (optional)  Free-form notes to reflect on
from_pytest  (optional)  Path to pytest output file
from_git     (optional)  Reflect from recent git log
apply        (optional)  Path to apply suggestions to
yes          (optional)  Auto-accept all suggestions

Example:

"Use agentreflect_generate with these notes: 'Tests failed 3 times, agent missed the cwd convention.'"


Development

git clone https://github.com/mikiships/agentkit-mcp
cd agentkit-mcp
npm install
npm run build
npm test

To test locally as an MCP server:

node dist/index.js

License

MIT