New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

workspace-init-mcp

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

workspace-init-mcp

MCP server that initializes VS Code workspaces with documentation governance, Copilot instructions, Agent Skills (agentskills.io), and AI-native project structure

latest
Source
npmnpm
Version
3.1.0
Version published
Weekly downloads
14
55.56%
Maintainers
1
Weekly downloads
 
Created
Source

workspace-init-mcp

npm version License: MIT

MCP server that initializes workspaces with AI agent instructions, Agent Skills, documentation governance, and project structure — across VS Code, Cursor, Claude Code, and OpenHands.

Just say "initialize workspace" to your LLM — it generates everything automatically based on your project type.

#Learning #WebApp #API #Mobile #DataScience #DevOps #Creative #Library #Monorepo #Consulting #Ecommerce #Fintech #Healthcare #SaaS #IoT

Setup

Add to your MCP config and you're done.

VS Code (settings.json)

{
  "mcp": {
    "servers": {
      "workspace-init": {
        "type": "stdio",
        "command": "npx",
        "args": ["-y", "workspace-init-mcp"]
      }
    }
  }
}

VS Code (.vscode/mcp.json)

{
  "servers": {
    "workspace-init": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "workspace-init-mcp"]
    }
  }
}

Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "workspace-init": {
      "command": "npx",
      "args": ["-y", "workspace-init-mcp"]
    }
  }
}

What It Does

Tell your LLM "initialize workspace" and it generates:

  • .github/copilot-instructions.md — Global AI agent instructions
  • .github/agents/ & .github/skills/Agent Skills (50+ agents, 40+ skills)
  • .vscode/settings.json & *.instructions.md — Custom instructions (code, test, review, commit, PR)
  • .editorconfig & .gitattributes — Cross-editor consistency
  • docs/ — Documentation governance (work-logs, changelog, ADR, troubleshooting)

Tools

ToolDescription
initialize_workspaceGenerate all workspace files
preview_workspace_initPreview without creating files
analyze_workspaceDetect project type & tech stack
validate_workspaceCheck initialization completeness
list_project_typesList available project types
get_init_form_schemaGet input form schema
recommend_agent_skillsGet skill recommendations
search_agent_skillsSearch skill catalog
install_agent_skillsInstall specific skills/agents
list_agent_skills_catalogBrowse full catalog

Project Types

TypeLabelBest For
learning학습/자기개발Tutorials, study projects, self-learning
web-app웹 애플리케이션Frontend / fullstack web apps
apiAPI 서버Backend REST / GraphQL services
mobile모바일 앱iOS, Android, cross-platform apps
data-science데이터 사이언스ML/AI, data analysis, Jupyter notebooks
devopsDevOps/인프라CI/CD, IaC, cloud infrastructure
creative크리에이티브/콘텐츠Writing, content creation, documentation
library라이브러리/패키지Reusable libraries, npm/pip packages
monorepo모노레포Multi-package repositories
consulting컨설팅/SIIT consulting, proposals, deliverables
ecommerce이커머스/커머스Online shopping, payments, order management
fintech핀테크/금융Banking, payments, regulatory compliance
healthcare헬스케어/의료EMR, health services, HIPAA compliance
saasSaaS 플랫폼Multi-tenant platforms, subscription billing
iotIoT/임베디드IoT devices, sensors, edge computing
other기타Custom / general-purpose projects

License

MIT

Keywords

mcp

FAQs

Package last updated on 04 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts