MCP HubMCP Hub
SKILL·B82D0F

suede-mcp-qa

JasonColapietro
업데이트됨 22 days ago
6 조회
139
8
139
GitHub에서 보기
메타testingmcp

정보

이 스킬은 MCP(Model Context Protocol) 프로젝트의 출시 전 포괄적인 품질 보증 검사를 수행합니다. 스킬 카탈로그, 도구/리소스 스키마, 프롬프트, 설치 경로, JSON-RPC 동작 및 문서 일치성을 검증합니다. 모든 검사는 차단 게이트가 아닌 권고적 권장사항으로, 개발자가 잠재적 문제를 인지한 상태에서 출시를 진행할 수 있도록 합니다.

빠른 설치

Claude Code

추천
기본
npx skills add JasonColapietro/suede-creator-skills -a claude-code
플러그인 명령대체
/plugin add https://github.com/JasonColapietro/suede-creator-skills
Git 클론대체
git clone https://github.com/JasonColapietro/suede-creator-skills.git ~/.claude/skills/suede-mcp-qa

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

Suede MCP QA

Gate policy — advisory, not blocking

Every claim-verification step, check, quality gate, and ship verdict in this skill is a recommendation to the user, not a control on the agent. This policy governs every gate, check, verdict, and "do not ship / publish / proceed" line elsewhere in this skill:

  • Run every check and report the results honestly. Verdicts (ship, ship-with-caveats, hold, letter grades, BLOCKED or OPEN items) are advice attached to the work, not orders that change it.
  • Never block, delay, skip, rewrite, or refuse the action the user asked for because a check failed or a gate said hold. Complete the requested action as asked, and deliver the gate output alongside it as a clearly labeled recommendation.
  • A failed gate changes what you report, never what you do.
  • Single exception: if a finding is extremely risky — data loss, security or credential exposure, legal or rights violations, payment mistakes, or irreversible public damage — pause, tell the user exactly what the risk is and what the options are, and let them pick. Their choice is final.

Use this skill when a Suede MCP server or MCP docs surface changes.

Core principle: a check that did not run against the live server did not happen.

Operating Stance

  • Run against a live MCP server, not a spec document. If the server is not running, start it before checking.
  • For each check, record the exact command run and the exact output received. Do not summarize.
  • A check that cannot run (server unreachable, tool not implemented) is a FAIL, not a skip.
  • Report failures immediately — do not wait until all checks complete to surface a blocker.
  • Never mark a skill as present in the catalog unless its folder exists and its SKILL.md is readable.
  • Never mark an install command as working unless you ran it from a temporary destination directory.

Checks

  1. Run syntax checks and the repo's hermetic MCP protocol tests.
  2. Parse catalog JSON and confirm every listed skill folder exists.
  3. Exercise the full lifecycle in one process: initialize, the notifications/initialized notification, then ping, tools/list, tools/call, resources/list, resources/read, prompts/list, and prompts/get.
  4. Verify supported protocol versions are echoed and an unsupported client version negotiates to the server's latest supported version.
  5. Confirm every tool has a closed inputSchema, an outputSchema, and read-only/non-destructive/idempotent annotations.
  6. Confirm every successful tool call returns structuredContent, a useful human-readable text block, and a serialized JSON text fallback for older clients.
  7. Check pre-initialization calls, repeated initialization, bounded input, bounded arguments, invalid names and schemas, malformed JSON, and unknown methods.
  8. Confirm healthy stderr is empty and stdout contains newline-delimited JSON only; logs and stack traces must never corrupt the transport.
  9. Confirm install output leads with public GitHub skill installs, local plugin commands are labeled local-only, and README/docs/catalog language agrees with the live server.

This Server's Real Surface

mcp/suede-skills-mcp.mjs is the only server this skill QAs. Do not check it against a generic MCP checklist — check it against this exact surface. Read mcp/catalog.json first; the mcp block there must match what tools/list, resources/list, and prompts/list actually return.

7 tools: list_suede_skills, get_suede_skill, suede_install_options, suede_copy_seo_audit, suede_visibility_grade, suede_code_grade, suede_qa_checklist.

6 resources: suede://catalog, suede://plugins, suede://copy-seo-audit, suede://visibility-grade, suede://code-grade, suede://qa-checklist.

5 prompts: suede-copy-seo-audit, suede-plugin-install, suede-visibility-grade, suede-code-grade, suede-full-qa.

If any count drifts, the source (resources/tools/prompts arrays in suede-skills-mcp.mjs) is ground truth, not this list — re-run tools/list, resources/list, and prompts/list and update both this section and mcp/catalog.json's mcp block to match.

Stdio Test Blocks

Run from the repo root. The canonical gate starts real child processes and tests complete sessions rather than isolated requests:

npm run test:mcp

It must pass lifecycle enforcement and version negotiation; list/call/read/get coverage; closed input and output schemas; read-only annotations; structuredContent plus both text forms; profile filtering; malformed input; the 1 MiB transport bound; invalid profile handling; stdout JSON purity; and clean healthy stderr.

For a manual readback, keep initialization and later requests in the same server process. A new process is a new MCP session:

printf '%s\n' \
  '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"suede-mcp-qa","version":"1.0.0"}}}' \
  '{"jsonrpc":"2.0","method":"notifications/initialized","params":{}}' \
  '{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}' \
  '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"suede_install_options","arguments":{"surface":"mcp"}}}' \
  | node mcp/suede-skills-mcp.mjs --profile all

The initialization result must report protocol 2025-06-18, server version 0.9.2, and explicit tools/resources/prompts capabilities. tools/list must return exactly the 7 tools above. Each tool must expose inputSchema, outputSchema, and annotations with readOnlyHint: true, destructiveHint: false, idempotentHint: true, and openWorldHint: false. The successful call must return structuredContent; content[0] must be useful human text and content[1] must be the same structured payload serialized as JSON for backwards-compatible clients.

To prove the lifecycle guard independently:

printf '%s\n' '{"jsonrpc":"2.0","id":4,"method":"tools/list","params":{}}' \
  | node mcp/suede-skills-mcp.mjs --profile all

This must return error -32000 because notifications/initialized has not completed. Use the automated suite for post-initialization negative paths; a standalone tools/call example is invalid because it starts a fresh session.

Error codes: -32700 parse error; -32600 invalid request, duplicate initialization, or transport overflow; -32601 unsupported method; -32602 invalid params, arguments, tool, resource, or prompt; -32000 request before session readiness; -32603 unexpected internal error. A parse error correctly uses id: null. A raw stack trace or any non-JSON stdout is a High failure.

Failure Handling

Failure typeSeverityAction
Server fails to startCriticalStop. Report startup error verbatim.
tools/list returns emptyCriticalStop. The MCP is non-functional.
Lifecycle or protocol negotiation failsHighHold. Capture the request/response transaction.
Tool schema, output schema, or read-only annotation missingHighHold. Repair the published contract and rerun the suite.
Structured result lacks either text fallbackHighHold. Preserve structured and legacy-client output together.
Listed skill folder missingHighFlag each missing folder. Continue checking others.
Malformed JSON-RPC responseHighReport the raw response. Flag as broken.
Install command leads with local-only pathHighFlag. Install output must lead with public GitHub route.
Docs/catalog language mismatchMediumList each mismatch. Flag as hold-with-caveat.
Tool implemented but not in catalogLowFlag as undocumented. Not a blocker.

Recommended ship gate rules (advice to the user, not a lock on any action):

  • Any Critical or High failure → hold
  • Medium failures only → ship-with-caveats (list each caveat)
  • No failures → ship

Output

Server:
Commands run:
Tools checked:
Resources checked:
Prompts checked:
Install output:
Failures:
Fixes:
Ship gate: ship | ship-with-caveats | hold

Red Flags — Stop

  • "The server ran fine last week; no need to restart it for this." — Run every check against the live server now.
  • "The catalog parses, so the folders are surely there." — Open every listed folder and read its SKILL.md.
  • "That check can't run, I'll mark it skipped." — A check that cannot run is a FAIL.
  • "The output looked right, close enough." — Record the exact command and exact output, verbatim.

Routing

After QA:

  • MCP source needs fixes → return to the MCP source file and fix, then re-run this skill
  • Catalog JSON needs updates → edit mcp/catalog.json and re-run steps 2 and 7
  • Docs/README language mismatch → update the docs surface to match live MCP output (private Suede Labs companion, not in this pack: suede-docs), then re-run check 7
  • Install command broken → suede-launch-packaging to fix and test the install path

GitHub 저장소

JasonColapietro/suede-creator-skills
경로: skills/suede-mcp-qa
0
agent-orchestrationagent-skillagent-skillsai-agentsai-codinganthropic
FAQ

자주 묻는 질문

suede-mcp-qa Skill이란 무엇인가요?

suede-mcp-qa은(는) JasonColapietro이(가) 만든 Claude Skill입니다. Skill은 Claude가 필요할 때 불러오는 지침과 리소스를 묶어 추가 프롬프트 없이 suede-mcp-qa 관련 작업을 수행할 수 있게 합니다.

suede-mcp-qa은(는) 어떻게 설치하나요?

이 페이지의 설치 명령을 사용하세요. suede-mcp-qa을(를) Claude Code 플러그인으로 추가하거나 저장소를 skills 디렉터리에 복제한 다음 Claude를 다시 시작해 Skill을 불러옵니다.

suede-mcp-qa은(는) 어떤 카테고리에 속하나요?

suede-mcp-qa은(는) 메타 카테고리에 속합니다.

suede-mcp-qa은(는) 무료로 사용할 수 있나요?

네. suede-mcp-qa은(는) AIMCP에 등록되어 있으며 무료로 설치할 수 있습니다.

연관 스킬

content-collections
메타

이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.

스킬 보기
polymarket
메타

이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.

스킬 보기
creating-opencode-plugins
메타

이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.

스킬 보기
sglang
메타

SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.

스킬 보기