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

mcp-dev-blueprints

v1.2.0

Published

Enterprise application patterns MCP server with HTTP transport

Downloads

410

Readme

MCP Dev Blueprints

MCP Dev Blueprints Logo

Transform your organization's knowledge into intelligent AI tools with minimum development.

What is MCP Dev Blueprints?

MCP Dev Blueprints is a powerful, configuration-driven framework that enables organizations to create and deploy Model Context Protocol (MCP) servers using simple JSON files. Turn your company's coding standards, best practices, and documentation into AI-accessible tools that enhance developer productivity.

✨ Key Benefits

  • 🛠️ Easy Configuration - Create sophisticated AI tools using only JSON configuration files
  • 🚀 Flexible Deployment - Run as standalone HTTP servers or integrate as npm packages
  • 🏢 Enterprise Ready - Centralize organizational knowledge and coding standards
  • Instant Results - Deploy in minutes, not hours
  • 🔧 Extensible - Add custom TypeScript tools for advanced functionality
  • 📊 Multi-Client Support - Works with VS Code, Claude, JetBrains, and more

What Can You Build?

🏢 Enterprise Knowledge Management

  • Coding standards and style guides
  • Architecture patterns and decisions
  • API documentation and examples
  • Deployment procedures and checklists

🔧 Development Tools

  • Code generation templates
  • Testing guidelines and patterns
  • Security best practices
  • Performance optimization guides

📚 Team Resources

  • Onboarding documentation
  • Troubleshooting guides
  • Reference materials
  • Process documentation

Quick Start Guide

Prerequisites

  • Node.js 20 or higher
  • npm (included with Node.js)

Option 1: Try It Instantly (Recommended)

Get started in under 2 minutes using npx:

# Create your knowledge base directory
mkdir my-knowledge-base && cd my-knowledge-base

# Create a basic server configuration
cat > servers.json << 'EOF'
[
    {
        "name": "my-company-kb",
        "path": "my-company-kb", 
        "features": ["company-standards.json"]
    }
]
EOF

# Create your first feature file
cat > company-standards.json << 'EOF'
{
    "tools": [
        {
            "id": "coding_standards",
            "title": "Company Coding Standards",
            "description": "Our organization's coding standards and best practices.",
            "content": [
                {
                    "type": "text",
                    "text": "## Coding Standards\n\n- Use TypeScript for all new projects\n- Follow ESLint configuration\n- Write unit tests with >80% coverage\n- Use conventional commit messages"
                }
            ]
        }
    ],
    "resources": [],
    "prompts": [],
    "custom_tools": [],
    "custom_resources": [],
    "custom_prompts": []
}
EOF

# Start the server in HTTP Mode
npx mcp-dev-blueprints --kb-path . --mode http

Your MCP server is now running at http://localhost:3000! 🎉

Option 2: Install and Develop Locally

# Clone and setup
git clone https://github.com/psbds/mcp-dev-blueprints.git
cd mcp-dev-blueprints
npm install

# Start in development mode
npm run dev

Integration with AI Clients

VS Code + GitHub Copilot

With the MCP Server Running locally, you can use it with VSCode by following those steps:

  1. Install GitHub Copilot Chat extension in VS Code

  2. Configure MCP - Press F1MCP: Open User Configuration

  3. Add your server:

3.1. If you using http mode

Obs: Make sure you're running your http server from the guide above

{
    "servers": {
        "my-company-kb": {
            "type": "http",
            "url": "http://localhost:3000/my-company-kb"
        }
    }
}

3.2. If you are using stdio mode

 {
     "servers": {
         "my-company-kb": {
             "type": "stdio",
             "command": "npx",
             "args": [
                 "mcp-dev-blueprints@latest",
                 "--kb-path",
                 "dev/knowledge_base", // Your Kb path here
                 "--mode",
                 "stdio"
                 // Optional: Add "--scope", "server1,server2" to load only specific servers
             ]
         }
     }
 }
  1. Start the server - Press F1MCP: List Servers → Select your server → Start Server

  2. Test it - Open Copilot Chat in Agent Mode and something related to your knowledge base, example: "What are our org coding standards?", the following widget should appear on the screen.

    MCP Integration Example

  3. By pressing allow, the MCP Server will be called and the contents will be added to the context of the Chat,so the LLM Model can use it.

Other AI Clients

You can use the MCP Servers in other MCP Clients, such as:

Documentation

| Document | Description | |----------|-------------| | Configuration Guide | Complete configuration reference | | Running Guide | Deployment and execution options | | Tools Reference | Creating and configuring tools | | Customization Guide | Advanced TypeScript extensions |

Contributing

We welcome contributions! Please see our contributing guidelines and commit conventions.

Support

License

MIT License - see LICENSE for details.


Ready to transform your organization's knowledge into AI-powered tools? Get started now or explore our comprehensive documentation.