implement-mcp

implement-mcp is a skill for Claude Code, Codex from hollobit/assembly-api-mcp. It costs 24 tokens per session (393 once invoked), scanned A, original, MIT.

A workflow for turning an approved design for MCP tools into TypeScript code. MCP is a way for an application to expose tools that an AI agent can call.

In plain words
What is it for?
It is for adding API codes and tool parameters, isolating failed operations, running TypeScript and test checks, updating documentation, and optionally deploying or publishing the package.
Why use it?
It keeps implementation, tests, documentation, version changes, and release tasks together so they are less likely to fall out of sync.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/hollobit/assembly-api-mcp/implement-mcp
Any agent
npx skills add hollobit/assembly-api-mcp --skill implement-mcp
Clone the repo
git clone --depth 1 https://github.com/hollobit/assembly-api-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for implement-mcp

README.md
[![agentmods](https://agentmods.dev/badge/skills/hollobit/assembly-api-mcp/implement-mcp.svg)](https://agentmods.dev/skills/hollobit/assembly-api-mcp/implement-mcp)
Your own site
<a href="https://agentmods.dev/skills/hollobit/assembly-api-mcp/implement-mcp"><img src="https://agentmods.dev/badge/skills/hollobit/assembly-api-mcp/implement-mcp.svg" alt="Measured on agentmods" height="20"></a>
Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 393 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00024 $0.00393
Opus 5 $0.00012 $0.00197
Sonnet 5 $0.00005 $0.00079
Haiku 4.5 $0.00002 $0.00039

Measured 4d ago against content hash 066fad26ac67, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

implement-mcp scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/implement-mcp/SKILL.md · 51 lines

What it actually says

Implement MCP Skill

승인된 도구 설계를 TypeScript로 구현합니다.

트리거

  • "이 API를 도구에 추가해줘"
  • "설계대로 구현해줘"
  • "Tier N 통합 진행해줘"

워크플로

  1. 설계 확인

    • _workspace/design-*.md 또는 Plans.md에서 구현 대상 확인
    • 변경 파일 목록 파악
  2. 구현 (mcp-developer)

    • API 코드 등록 (src/api/codes.ts)
    • 도구 파일 수정 (src/tools/lite/*.ts, src/tools/full/*.ts)
    • Promise.allSettled로 실패 격리
    • Zod 스키마 파라미터 추가
  3. 검증

    • npx tsc --noEmit 빌드 확인
    • npm test 테스트 통과
    • 기존 사용자 영향 없음 확인
  4. 문서 동기화 (중요!)

    • docs/tool-mapping.md 매핑 업데이트
    • README.md 수치 반영 (기억: feedback_doc_sync)
    • 버전 변경 시 5곳 동시 업데이트 (기억: feedback_versioning)
  5. 커밋 + 배포

    • conventional commit 형식
    • fly deploy (원격 서버)
    • npm publish (패키지, 필요 시)

체크리스트

  • 빌드 통과
  • 테스트 통과
  • 문서 동기화
  • Breaking change 여부 확인
  • 버전 업데이트 (필요 시)
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 51 lines · 24 tokens per session scan A 066fad26ac67

Subscribe to this mod's changes

implement-mcp is a skill published in the GitHub repository hollobit/assembly-api-mcp (89 stars, last pushed 4mo ago), licensed MIT. It adds 24 tokens to every session and 393 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

api-documentation-generator

Generates OpenAPI 3.0/3.1 specs, TypeScript client types, and curl examples from existing route handler code. Supports Express, Next.js API routes, Fastify, and Hono. Produces complete documentation including auth requirements, rate limits, error codes, and request/response examples. Activate on: 'generate API docs'…

curiositech/windags-skills · 129 tokens

new-exchange

Scaffold a new CCXT exchange integration in TypeScript, following the certified-exchange template. Walks through describe(), required unified methods, parsers, capability flags, sandbox setup, and static fixtures. Use when adding support for an exchange that does not exist yet under ts/src/.

ccxt/ccxt · 61 tokens

client-setup

Create a vanilla tRPC client with createTRPCClient (), configure link chain with httpBatchLink/httpLink, dynamic headers for auth, transformer on links (not client constructor). Infer types with inferRouterInputs and inferRouterOutputs. AbortController signal support. TRPCClientError typing.

trpc/trpc · 63 tokens

adapter-express

Mount tRPC as Express middleware with createExpressMiddleware() from @trpc/server/adapters/express. Access Express req/res in createContext via CreateExpressContextOptions. Mount at a path prefix like app.use('/trpc', ...). Avoid global express.json() conflicting with tRPC body parsing for FormData.

trpc/trpc · 67 tokens

trpc-router

Entry point for all tRPC skills. Decision tree routing by task: initTRPC.create(), t.router(), t.procedure, createTRPCClient, adapters, subscriptions, React Query, Next.js, links, middleware, validators, error handling, caching, FormData.

trpc/trpc · 59 tokens

openapi-glossary

Use consistent OpenAPI terminology and definitions when writing documentation, educational material, and tooling guidance.

scalar/scalar · 24 tokens