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

vibecoderskit-mcp-server

v1.2.1

Published

MCP server for VibeCodersKit - access your prompts, agents, skills, UI configs, tech stacks, and MCP configs from Claude Code

Downloads

13

Readme

VibeCodersKit MCP Server

Access your VibeCodersKit library directly from Claude Code — prompts, agents, skills, UI configs, tech stacks, and MCP server configurations.

Setup

1. Configure Claude Code

Add to your Claude Code MCP settings (.mcp.json in your project or ~/.claude/settings.json):

{
  "mcpServers": {
    "vibecoderskit": {
      "command": "npx",
      "args": ["-y", "vibecoderskit-mcp-server"]
    }
  }
}

2. Connect your account

npx vibecoderskit-mcp-server login

This displays a code like VIBE-XXXX. Open the URL shown and enter the code to authorize.

3. Restart Claude Code

The VibeCodersKit tools are now available.

Available Tools

Prompts

| Tool | Description | |------|-------------| | list_prompts | Browse your saved prompts | | get_prompt | Retrieve a prompt by name or ID | | save_prompt | Save a new prompt to your library | | delete_prompt | Remove a prompt |

Agents

| Tool | Description | |------|-------------| | list_agents | Browse your saved agents | | get_agent | Retrieve an agent by name or ID | | save_agent | Save a new agent configuration | | delete_agent | Remove an agent |

Skills

| Tool | Description | |------|-------------| | list_skills | Browse your saved skills | | get_skill | Retrieve a skill by name or ID | | save_skill | Save a new skill | | delete_skill | Remove a skill |

UI/UX Configurations

| Tool | Description | |------|-------------| | list_ui_configs | Browse your UI/UX configs | | get_ui_config | Retrieve a UI/UX config by name or ID | | save_ui_config | Extract and save UI/UX guidelines from a project | | delete_ui_config | Remove a UI/UX config |

Tech Stacks

| Tool | Description | |------|-------------| | list_stacks | Browse your tech stack definitions | | get_stack | Retrieve a tech stack by name or ID | | save_stack | Extract and save a project's tech stack | | delete_stack | Remove a tech stack |

MCP Server Configurations

| Tool | Description | |------|-------------| | list_mcp_configs | Browse your saved MCP server configs | | get_mcp_config | Retrieve an MCP config with ready-to-use .mcp.json snippet | | save_mcp_config | Save an MCP server configuration from your project | | delete_mcp_config | Remove an MCP config |

Status

| Tool | Description | |------|-------------| | vck_status | Check connection status and token expiry | | vck_logout | Disconnect and revoke your token |

Usage Examples

In Claude Code, just say:

  • "Show me my saved prompts"
  • "Get the agent called 'Code Reviewer'"
  • "Save this project's UI/UX guidelines to VibeCodersKit"
  • "Extract this project's tech stack and save it"
  • "Save my MCP server configs to VibeCodersKit"
  • "Get my MCP config for 'github' and add it to this project"

Development

git clone https://github.com/vibecoderskit/mcp-server.git
cd mcp-server
npm install
npm run build

For local development, point to your local API:

{
  "mcpServers": {
    "vibecoderskit": {
      "command": "node",
      "args": ["/path/to/mcp-server/dist/index.js"],
      "env": {
        "VIBEKIT_API_URL": "http://localhost:3001"
      }
    }
  }
}

Troubleshooting

"Not authenticated" error Run npx vibecoderskit-mcp-server login to connect your account.

"Authentication expired" error Tokens auto-refresh. If refresh fails, run login again.

Server not appearing in Claude Code

  1. Check your MCP config is valid JSON
  2. Restart Claude Code
  3. Look for errors in the MCP server output