dev-skills
Provides infrastructure patterns for Docker, including Dockerfiles, docker-compose, and infrastructure generators.
Provides expert patterns for building NestJS applications, including controllers, services, guards, interceptors, and middleware.
Provides database patterns for Prisma ORM, including db-per-service, environment validation, and seed data.
Provides event patterns for RabbitMQ, including publishers, subscribers, and event flows.
Provides patterns for building React applications, including pages, data tables, forms, charts, auth, and wizards.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@dev-skillsScaffold a new NestJS controller"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Dev Skills MCP Server
An MCP server that gives AI assistants specialized development expertise. Instead of generic coding help, it provides opinionated, battle-tested playbooks for building microservices, frontends, databases, DevOps pipelines, and more.
Works with VS Code Copilot (Agent Mode), Claude Desktop, Cursor, and any MCP-compatible client.
Quick Start
Prerequisites
Node.js ≥ 18
npm ≥ 9
Git
An MCP-compatible client (VS Code 1.99+, Claude Desktop, Cursor, etc.)
1. Clone & Install
git clone https://github.com/parikrut/mcp-toolkit.git
cd mcp-toolkit
npm install2. Build
npm run buildThis compiles TypeScript into dist/.
3. Connect to Your AI Client
Pick the client you use and follow the steps below.
Related MCP server: devflow-mcp
Setup — VS Code (GitHub Copilot)
Requires VS Code 1.99+ with GitHub Copilot extension.
Option A — Open this repo directly:
The repo already includes .vscode/mcp.json. Just open the folder in VS Code:
code mcp-toolkitCopilot will auto-discover the server. Switch to Agent mode in the Copilot chat panel and you'll see the dev-skills tools available.
Option B — Add to another project:
Create .vscode/mcp.json in your project root:
{
"servers": {
"dev-skills": {
"command": "node",
"args": ["/absolute/path/to/mcp-toolkit/dist/index.js"],
"env": {
"SKILLS_DIR": "/absolute/path/to/mcp-toolkit/src/skills"
}
}
}
}Replace /absolute/path/to/mcp-toolkit with the actual path where you cloned the repo.
Tip: Use
${workspaceFolder}if the MCP toolkit is inside your project.
Setup — Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"dev-skills": {
"command": "node",
"args": ["/absolute/path/to/mcp-toolkit/dist/index.js"],
"env": {
"SKILLS_DIR": "/absolute/path/to/mcp-toolkit/src/skills"
}
}
}
}Restart Claude Desktop after saving.
Setup — Cursor
Open Settings → MCP Servers → Add Server and enter:
Field | Value |
Name |
|
Command |
|
Args |
|
Env |
|
Verify It Works
After connecting, ask your AI assistant:
List all available dev skillsYou should see 7 categories and 60 skills returned via the list_skills tool.
You can also test from the terminal:
# Interactive inspector (opens a web UI)
npm run inspect
# Or pipe JSON-RPC directly
printf '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}\n{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"list_skills","arguments":{}}}\n' | node dist/index.js 2>/dev/nullThe Problem
AI assistants know general coding — but they don't know your team's way of building things. Every team has specific patterns, conventions, and standards that get lost in onboarding docs nobody reads.
The Solution
Package your development expertise as skills (Markdown files) that any AI assistant can read and follow at runtime:
Developer: "Create a new user authentication microservice"
AI + MCP Server:
1. Reads your microservice skill → learns YOUR patterns
2. Reads your auth skill → learns YOUR security standards
3. Scaffolds files from YOUR templates
4. Validates output against YOUR rules
5. Returns standards-compliant codeCore Tools
Tool | What It Does |
| Browse all skills organized by category |
| Retrieve a specific skill or category overview, or search by keyword |
| Generate files from Handlebars templates with variable substitution |
| Extract rules from skill docs and create a compliance checklist |
Skill Categories (Included)
Category | Skills | Description |
backend-patterns | 12 | NestJS controllers, services, guards, interceptors, middleware |
contract-patterns | 6 | Zod schemas, route constants, event contracts, barrel exports |
cross-service-patterns | 4 | Service clients, distributed locks, response envelopes |
database-patterns | 6 | Prisma ORM, db-per-service, env validation, seed data |
event-patterns | 5 | RabbitMQ publishers, subscribers, event flows |
frontend-patterns | 21 | React pages, data tables, forms, charts, auth, wizards |
infra-patterns | 6 | Dockerfiles, docker-compose, infra generators |
Using a Custom Skills Directory
By default the server loads skills from src/skills/ inside the repo. To point it at your own skills library:
# Via environment variable
SKILLS_DIR=/path/to/your/skills node dist/index.js
# Or via CLI argument
node dist/index.js --skills-dir /path/to/your/skillsSkills are organized as Markdown files in category folders:
your-skills/
├── backend/
│ ├── index.md ← category overview (optional)
│ ├── controller.md
│ └── service.md
├── frontend/
│ ├── index.md
│ └── component.md
└── testing/
└── unit-testing.mdProject Structure
mcp-toolkit/
├── src/
│ ├── index.ts # Server entry point
│ ├── utils/
│ │ └── skills-loader.ts # Loads .md files from skills directory
│ ├── tools/
│ │ ├── list-skills.ts # list_skills tool
│ │ ├── get-skill.ts # get_skill tool
│ │ ├── scaffold.ts # scaffold tool
│ │ └── check-standards.ts # check_standards tool
│ └── skills/ # Built-in knowledge base (60 skills)
│ ├── backend-patterns/
│ ├── contract-patterns/
│ ├── cross-service-patterns/
│ ├── database-patterns/
│ ├── event-patterns/
│ ├── frontend-patterns/
│ └── infra-patterns/
├── dist/ # Compiled output (after npm run build)
├── .vscode/mcp.json # VS Code Copilot MCP config
├── package.json
├── tsconfig.json
└── readme.mdTech Stack
TypeScript • Node.js • MCP SDK (
@modelcontextprotocol/sdk) • Zod for validationProtocol: JSON-RPC 2.0 over stdio transport
npm Scripts
Script | Command | Description |
|
| Compile TypeScript → |
|
| Watch mode (recompile on changes) |
|
| Run the compiled server |
|
| Open MCP Inspector web UI |
Example Usage
Once connected, try these prompts with your AI assistant:
"List all available skills" → calls
list_skills, shows all 7 categories"Show me the NestJS controller pattern" → calls
get_skill("backend-patterns/controller")"How do you handle events?" → calls
get_skillwith keyword search across all skills"Check this code against the backend standards" → calls
check_standards"Scaffold a new microservice called inventory" → calls
scaffoldwith your templates
Adding Your Own Skills
Create a new
.mdfile in any category folder undersrc/skills/Optionally add an
index.mdto the category for an overviewRebuild:
npm run buildThe skill is immediately available via
list_skillsandget_skill
Skill file format — just write Markdown. Include sections like:
# My Skill Name
## When to Use
...
## Rules
- Rule 1
- Rule 2
## Template
\```typescript
// code example
\```The check_standards tool automatically extracts items from Rules, Standards, and Checklist sections.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/parikrut/mcp-toolkit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server