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

@bimatrix-aud-platform/mcp-mtsd-validator

v1.0.0

Published

MCP Server for validating MTSD (i-AUD Design) documents

Downloads

17

Readme

@bimatrix-aud-platform/mcp-mtsd-validator

MTSD (i-AUD 화면 UI 정의 JSON) 문서를 검증하기 위한 MCP(Model Context Protocol) Server입니다.

Claude AI가 MTSD 문서를 생성할 때 실시간으로 스키마 검증을 수행하여 정확한 문서를 만들 수 있도록 도와줍니다.

설치 및 등록

방법 1: npx로 바로 사용 (권장)

별도 설치 없이 MCP 설정에 다음을 추가합니다.

Claude Code 프로젝트 설정 (.mcp.json):

{
  "mcpServers": {
    "mtsd-validator": {
      "command": "npx",
      "args": ["-y", "@bimatrix-aud-platform/mcp-mtsd-validator"]
    }
  }
}

Claude Desktop 전역 설정 (%APPDATA%\Claude\claude_desktop_config.json):

{
  "mcpServers": {
    "mtsd-validator": {
      "command": "npx",
      "args": ["-y", "@bimatrix-aud-platform/mcp-mtsd-validator"]
    }
  }
}

방법 2: 글로벌 설치 후 사용

npm install -g @bimatrix-aud-platform/mcp-mtsd-validator

MCP 설정:

{
  "mcpServers": {
    "mtsd-validator": {
      "command": "mcp-mtsd-validator"
    }
  }
}

방법 3: 로컬 설치

npm install @bimatrix-aud-platform/mcp-mtsd-validator

MCP 설정:

{
  "mcpServers": {
    "mtsd-validator": {
      "command": "node",
      "args": ["node_modules/@bimatrix-aud-platform/mcp-mtsd-validator/dist/index.js"]
    }
  }
}

제공 도구

validate_mtsd

전체 MTSD 문서를 검증합니다.

입력: { document: <JSON 문자열 또는 객체> }
출력: { valid: boolean, errors?: [...] }

validate_part

특정 부분만 검증합니다 (점진적 생성 시 유용).

입력: { partName: "Form", data: <JSON> }
출력: { valid: boolean, errors?: [...] }

partName 예시:
- ReportInfo, DataSource, Form, Element
- LabelElement, ButtonElement, DataGridElement
- Variable, Module, ExecutionPlan

get_schema_info

특정 타입의 스키마 정보를 조회합니다.

입력: { typeName: "Form" }
출력: { required: [...], optional: [...], properties: {...} }

get_element_types

사용 가능한 Element 타입 목록을 반환합니다.

get_root_structure

MTSD 문서의 최상위 구조를 반환합니다.

사용 예시

Claude에게 MTSD 문서 생성을 요청할 때:

  1. get_root_structure로 전체 구조 파악
  2. get_schema_info로 각 섹션의 필수/선택 속성 확인
  3. 부분별로 생성 후 validate_part로 즉시 검증
  4. 전체 완성 후 validate_mtsd로 최종 검증

요구사항

  • Node.js >= 18.0.0

라이선스

MIT