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

@kitnai/mcp-server

v0.1.0

Published

MCP server for kitn — exposes project management tools to AI coding assistants

Readme

@kitnai/mcp-server

MCP server for kitn — manage AI agent projects from any editor that supports the Model Context Protocol.

Install components, scaffold agents and tools, wire dependencies, and explore the registry — all through your AI coding assistant.

Install

Claude Code

claude mcp add kitn -- npx -y @kitnai/mcp-server

Cursor

Add to .cursor/mcp.json (project-level) or ~/.cursor/mcp.json (global):

{
  "mcpServers": {
    "kitn": {
      "command": "npx",
      "args": ["-y", "@kitnai/mcp-server"]
    }
  }
}

VS Code Copilot

Add to .vscode/mcp.json in your workspace:

{
  "servers": {
    "kitn": {
      "command": "npx",
      "args": ["-y", "@kitnai/mcp-server"]
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "kitn": {
      "command": "npx",
      "args": ["-y", "@kitnai/mcp-server"]
    }
  }
}

Zed

Add to Zed settings (cmd+, > MCP Servers):

{
  "context_servers": {
    "kitn": {
      "command": {
        "path": "npx",
        "args": ["-y", "@kitnai/mcp-server"]
      }
    }
  }
}

Any MCP-compatible client

The server uses stdio transport. Run the binary and communicate over stdin/stdout:

npx -y @kitnai/mcp-server

You can also install globally:

npm install -g @kitnai/mcp-server
kitn-mcp

Usage

Once connected, the MCP tools are available automatically. Your AI assistant will use them when your request relates to kitn — no need to be explicit.

Scaffolding a new project

"Create a new kitn project called my-api"

"Initialize kitn in this project"

Adding components

"Add the weather-agent component"

"Install the calculator tool and its dependencies"

Exploring the registry

"What kitn components are available?"

"Show me details about the web-search tool"

"Search for agents related to scheduling"

Managing components

"Remove the weather-agent"

"Update all installed components to the latest version"

"Show me what's different between my local weather-agent and the registry version"

Scaffolding custom code

"Create a new agent called support-bot"

"Create a tool called sentiment-analysis"

Wiring things together

"Link the web-search tool to my general agent"

"Unlink calculator from the support-bot agent"

Project context

"What kitn components do I have installed?"

"Show me the dependency tree"

"Regenerate my AI rules files"

Testing tools and agents

"Try the weather tool with city Tokyo"

"Send 'What is 2+2?' to the general agent"

Tools

25 tools across 6 categories:

Project setup

| Tool | Description | |------|-------------| | kitn_project | Get project context — config, installed components, framework, runtime | | kitn_init | Initialize kitn in a project | | kitn_new | Create a new project from a starter template | | kitn_rules | Generate or regenerate AI coding rules files |

Component management

| Tool | Description | |------|-------------| | kitn_add | Install component(s) with automatic dependency resolution | | kitn_remove | Remove an installed component | | kitn_update | Update installed components to the latest registry version | | kitn_create | Scaffold a new agent, tool, skill, storage, or cron | | kitn_link | Wire a tool into an agent's tools object | | kitn_unlink | Remove a tool from an agent |

Discovery

| Tool | Description | |------|-------------| | kitn_list_types | Get available component type categories and counts | | kitn_list | List components of a specific type | | kitn_info | Full component details — docs, files, dependencies, changelog | | kitn_diff | Show differences between local and registry version |

Package management

| Tool | Description | |------|-------------| | kitn_install | Install components from kitn.lock at exact recorded versions | | kitn_outdated | Show installed components with newer versions available | | kitn_why | Explain why a component is installed (reverse dependency chain) | | kitn_tree | Show the dependency tree of installed components | | kitn_doctor | Check project integrity — files, hashes, dependencies, orphans |

Registry

| Tool | Description | |------|-------------| | kitn_registry_search | Search configured registries by name or description | | kitn_registry_list | List all configured registries | | kitn_registry_add | Add a third-party registry |

Testing

| Tool | Description | |------|-------------| | kitn_try_tool | Execute a kitn tool with input parameters and return the result | | kitn_try_agent | Send a prompt to a kitn agent and return the response | | kitn_help | Get kitn coding guidance on a specific topic |

Resources

| Resource | Description | |----------|-------------| | kitn://project | Current project configuration and installed components | | kitn://rules | Full kitn coding conventions and patterns template |

Local development

If you're working on the kitn monorepo itself and want the MCP server to reflect local changes in real time, run from source instead of npm. See MCP.md in the repo root for editor-specific setup instructions.

Related packages

License

MIT