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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@dotted-labs/ai-vibecontext

v0.0.10

Published

VibeContext Application for documentation management

Readme

@dotted-labs/ai-vibecontext

npm version License: MIT

VibeContext MCP Server - A Model Context Protocol server for AI-powered documentation management.

Features

🔧 4 Essential Tools:

  • readDoc: Read documentation files
  • writeDoc: Create/edit documentation files
  • listTentatives: List pending *.vc.md files
  • readCodeDiff: Get git diffs for code analysis

🛡️ Security First:

  • Sandboxed file access (repository only)
  • Path traversal protection
  • Allowed file extensions validation
  • Standard MCP protocol compliance

🚀 Easy Integration:

  • Works with Cursor IDE
  • Compatible with Claude Desktop
  • Standard MCP protocol (JSON-RPC 2.0)
  • TypeScript support included

Installation

npm install -g @dotted-labs/ai-vibecontext

Quick Start

1. Configuration

Create or update your .cursor/mcp.json:

{
  "mcpServers": {
    "vibecontext": {
      "command": "vibecontext-mcp",
      "env": {
        "OPENAI_API_KEY": "your-api-key-optional"
      }
    }
  }
}

2. Usage

Once configured, the tools are available in your MCP-compatible client:

// Read a documentation file
readDoc({ path: 'docs/README.md' });

// Write documentation
writeDoc({
  path: 'docs/feature.md',
  content: '# New Feature\n\nDescription...',
});

// List tentative files
listTentatives();

// Get code diff
readCodeDiff({ filePath: 'src/app.ts' });

Tools Reference

readDoc(params)

Reads content from documentation files.

Parameters:

  • path (string): Relative path to file

Returns: File content as string

writeDoc(params)

Creates or overwrites documentation files.

Parameters:

  • path (string): Relative path for the file
  • content (string): File content

Returns: Success message

listTentatives()

Lists all *.vc.md files in .vibecontext/tentative/ directory.

Returns: Array of tentative files with metadata

readCodeDiff(params)

Gets git diff for a specific file against HEAD.

Parameters:

  • filePath (string): Path to file for diff

Returns: Git diff output

Security

  • Sandboxed Access: Only files within the current repository
  • Allowed Extensions: .md, .vc.md, .txt only
  • Path Validation: Prevents directory traversal attacks
  • Standard Protocol: Uses official MCP specification

Development

Local Setup

# Clone the repository
git clone https://github.com/luisMDev/vibe-context.git
cd vibe-context/packages/mcp

# Install dependencies
npm install

# Build
npm run build

# Run locally
npm start

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

License

MIT © Luis M. (@luisMDev)

Links

Changelog

1.0.0

  • Initial release
  • Core MCP tools implementation
  • Security sandbox
  • TypeScript support
  • Standard MCP protocol compliance