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

@neoforge/forge-mcp

v2.0.0

Published

MCP server for Intent-Driven Development (IDD) - structured AI-assisted development workflow

Downloads

6

Readme

FORGE MCP Server

Pure MCP (Model Context Protocol) implementation of the FORGE development framework

FORGE MCP Server is an AI-native development framework designed for AI-powered development tools. It provides structured workflow management through the MCP standard, implementing Intent-Driven Development (IDD).

Features

  • AI-Native Design: Built for AI coding assistants (Claude Code, Cursor, VS Code)
  • 5-Phase Workflow: Focus → Orchestrate → Refine → Generate → Evaluate
  • TDD Enforcement: Tests before implementation, 80% minimum coverage
  • Learning System: Persistent project knowledge base
  • Specialist Agents: Expert guidance for each development aspect

Quick Start

Local Installation

cd forge-mcp
npm install
npm start

Claude Code Configuration

Add to ~/.claude/settings.json:

{
  "mcpServers": {
    "forge": {
      "command": "node",
      "args": ["/path/to/forge-mcp/server.js"]
    }
  }
}

Usage

Just talk to Claude:

  • "Initialize FORGE in this project"
  • "Start a new cycle for user authentication"
  • "What's my cycle status?"
  • "Advance to the next phase"

Development Cycles

FORGE implements Intent-Driven Development through 5 phases:

| Phase | Purpose | Key Output | |-------|---------|------------| | Focus 🎯 | Clarity: What & Why | Problem statement, success criteria, C4 L1 | | Orchestrate 📋 | Planning: Break It Down | C4 L2-L3, dependency map, session-sized tasks | | Refine ✏️ | Precision: Define "Done" | Acceptance criteria, interfaces, edge cases | | Generate ⚡ | Creation: TDD Code | RED → GREEN → REFACTOR | | Evaluate ✅ | Verification | Criteria check, security review, disposition |

Key Rule: No code in Refine phase - specifications only.

MCP Tools

| Tool | Purpose | |------|---------| | forge_init | Initialize FORGE in project | | forge_new_cycle | Create development cycle | | forge_list_cycles | List all cycles | | forge_status | Check cycle progress | | forge_validate | Validate phase requirements | | forge_advance_phase | Move to next phase | | forge_complete_task | Mark task complete | | forge_add_task | Add new task | | forge_complete_cycle | Complete and archive cycle | | forge_add_learning | Capture learning | | forge_retro | Run retrospective | | forge_invoke_agent | Invoke specialist agent |

MCP Resources

| URI | Content | |-----|---------| | forge://config | Project configuration | | forge://context | AI assistant context | | forge://learnings | Knowledge base | | forge://cycles/{id} | Cycle content | | forge://cookbook/{phase} | Phase guides | | forge://agents/{name} | Agent definitions |

Specialist Agents

| Agent | Expertise | |-------|-----------| | architect | System design, C4 diagrams, technology selection | | developer | TDD implementation, code patterns | | tester | Test strategy, edge cases, quality | | security | Threat modeling, OWASP, compliance | | devops | CI/CD, infrastructure, deployment | | documentation | Technical writing, API docs | | reviewer | Code review, best practices |

Project Structure

forge-mcp/
├── server.js              # Entry point
├── lib/
│   ├── core/
│   │   ├── mcp-server.js  # MCP protocol handler
│   │   └── state-manager.js # File-based state
│   ├── tools/index.js     # MCP tool implementations
│   ├── resources/index.js # MCP resource handlers
│   └── transport/stdio.js # Stdio transport
├── cookbook/phases/       # Phase guides
├── prompts/               # PRD and retrospective guides
└── templates/             # Cycle and agent templates

Development

npm test        # Run tests
npm run dev     # Debug mode
npm run lint    # Check code style

License

MIT License - see LICENSE file.


FORGE - Intent-Driven Development for the AI era