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

vibebuff-mcp

v1.0.0

Published

MCP Server for VibeBuff - AI-powered tech stack recommendations for your IDE

Readme

VibeBuff MCP Server

Connect your IDE (Cursor, Claude Code, VS Code, etc.) to VibeBuff's AI-powered tech stack knowledge base.

What is MCP?

The Model Context Protocol (MCP) is an open standard that allows AI assistants to access external data sources and tools. With the VibeBuff MCP server, your AI coding assistant can:

  • Get AI-powered tech stack recommendations
  • Search 500+ developer tools
  • Compare tools side-by-side
  • Access pre-built stack templates
  • Get detailed tool information

Installation

Option 1: NPX (Recommended)

npx @vibebuff/mcp-server

Option 2: Install Globally

npm install -g @vibebuff/mcp-server

Option 3: Build from Source

cd mcp-server
npm install
npm run build

Configuration

Cursor IDE

Add to your Cursor settings (~/.cursor/mcp.json):

{
  "mcpServers": {
    "vibebuff": {
      "command": "npx",
      "args": ["@vibebuff/mcp-server"],
      "env": {
        "VIBEBUFF_API_URL": "https://vibebuff.dev/api",
        "VIBEBUFF_API_KEY": "your-api-key-optional"
      }
    }
  }
}

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "vibebuff": {
      "command": "npx",
      "args": ["@vibebuff/mcp-server"],
      "env": {
        "VIBEBUFF_API_URL": "https://vibebuff.dev/api"
      }
    }
  }
}

VS Code with Continue

Add to your Continue config:

{
  "mcpServers": [
    {
      "name": "vibebuff",
      "command": "npx",
      "args": ["@vibebuff/mcp-server"]
    }
  ]
}

Windsurf

Add to your Windsurf MCP settings:

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

Available Tools

recommend_stack

Get AI-powered tech stack recommendations based on your project requirements.

Parameters:

  • projectDescription (required): Description of the project you want to build
  • budget (optional): "free" | "low" | "medium" | "high" | "enterprise"
  • scale (optional): "hobby" | "startup" | "growth" | "enterprise"
  • teamSize (optional): Number of developers

Example:

"I want to build a SaaS app with user authentication, real-time features, and payment processing"

search_tools

Search the VibeBuff database of 500+ developer tools.

Parameters:

  • query (required): Search query
  • category (optional): Filter by category
  • limit (optional): Max results

get_tool_details

Get detailed information about a specific tool.

Parameters:

  • toolSlug (required): Tool identifier (e.g., "nextjs", "supabase")

compare_tools

Compare 2-4 tools side by side.

Parameters:

  • tools (required): Array of tool slugs

get_stack_template

Get pre-built stack templates.

Parameters:

  • templateType (required): "saas" | "ecommerce" | "blog" | "portfolio" | "api" | "mobile" | "ai-app" | "realtime"
  • budget (optional): Budget constraint

get_categories

List all tool categories.

Available Resources

Access these resources for context:

  • vibebuff://tools/all - Complete tool database
  • vibebuff://categories/all - All categories
  • vibebuff://templates/all - Stack templates
  • vibebuff://synergies/all - Tool integrations
  • vibebuff://trends/current - Current tech trends

Available Prompts

Pre-built prompts for common workflows:

architect_stack

Help architect a complete tech stack for a new project.

migrate_stack

Get guidance on migrating from one tech stack to another.

optimize_stack

Analyze and optimize an existing tech stack.

evaluate_tool

Deep evaluation of a specific tool for your use case.

Example Usage in Cursor/Claude

Once configured, you can ask your AI assistant:

"Use VibeBuff to recommend a tech stack for building a real-time collaborative document editor"

"Search VibeBuff for the best authentication solutions"

"Compare Next.js, Remix, and SvelteKit using VibeBuff"

"Get the VibeBuff SaaS template for a free budget"

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | VIBEBUFF_API_URL | VibeBuff API endpoint | https://vibebuff.dev/api | | VIBEBUFF_API_KEY | API key for authenticated requests | (optional) |

API Key (Optional)

For enhanced features and higher rate limits, get an API key from your VibeBuff profile:

  1. Sign up at vibebuff.dev
  2. Go to Profile > Settings > API Keys
  3. Generate a new MCP API key
  4. Add it to your MCP configuration

Troubleshooting

Server not connecting

  1. Ensure Node.js 18+ is installed
  2. Check that the MCP config path is correct for your IDE
  3. Restart your IDE after config changes

API errors

  1. Check your internet connection
  2. Verify the API URL is correct
  3. If using an API key, ensure it's valid

Mock data showing

If you see "Mock data" responses, the server is working but can't reach the VibeBuff API. This is normal for local development.

Development

# Install dependencies
npm install

# Build
npm run build

# Run locally
npm start

# Watch mode
npm run dev

License

MIT