mcp-dev-blueprints
v1.2.0
Published
Enterprise application patterns MCP server with HTTP transport
Downloads
410
Maintainers
Readme
MCP Dev Blueprints

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 httpYour 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 devIntegration with AI Clients
VS Code + GitHub Copilot
With the MCP Server Running locally, you can use it with VSCode by following those steps:
Install GitHub Copilot Chat extension in VS Code
Configure MCP - Press
F1→MCP: Open User ConfigurationAdd 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
]
}
}
}Start the server - Press
F1→MCP: List Servers→ Select your server →Start ServerTest it - Open Copilot Chat in
Agent Modeand something related to your knowledge base, example: "What are our org coding standards?", the following widget should appear on the screen.
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:
- Claude Desktop - Professional AI assistant
- Visual Studio - Microsoft's IDE
- JetBrains IDEs - IntelliJ IDEA, PyCharm, etc.
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
- 📖 Documentation: Comprehensive guides in the
/docsfolder - 🐛 Issues: GitHub Issues
- 💬 Discussions: GitHub Discussions
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.
