mcp-development

mcp-development is a skill for Claude Code, Codex from adeze/raindrop-mcp. It costs 12 tokens per session (727 once invoked), scanned A, original, MIT.

A development guide for building MCP servers in TypeScript. MCP, the Model Context Protocol, is a standard way for an AI application to discover and use external tools and data.

In plain words
What is it for?
Use it to design MCP services, validate data with Zod, support HTTP or standard-input/output connections, expose manifests, and organize extendable tool operations.
Why use it?
It helps keep servers compatible with the protocol while making their inputs, outputs, errors, and transport methods easier to maintain.

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/adeze/raindrop-mcp/mcp-development
Any agent
npx skills add adeze/raindrop-mcp --skill mcp-development
Clone the repo
git clone --depth 1 https://github.com/adeze/raindrop-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 mcp-development

README.md
[![agentmods](https://agentmods.dev/badge/skills/adeze/raindrop-mcp/mcp-development.svg)](https://agentmods.dev/skills/adeze/raindrop-mcp/mcp-development)
Your own site
<a href="https://agentmods.dev/skills/adeze/raindrop-mcp/mcp-development"><img src="https://agentmods.dev/badge/skills/adeze/raindrop-mcp/mcp-development.svg" alt="Measured on agentmods" height="20"></a>
Per session 12 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 727 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.00012 $0.00727
Opus 5 $0.00006 $0.00364
Sonnet 5 $0.00002 $0.00145
Haiku 4.5 $0.00001 $0.00073

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

Security

Grade A, and why

mcp-development 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.

.github/skills/mcp-development/SKILL.md · 44 lines

How it starts

The opening of the file, as written. The whole thing — 44 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MCP Server Development Skill

Guidelines for designing and implementing MCP servers with TypeScript, focusing on protocol compliance, service architecture, and extensibility.

MCP Server Design Patterns

  • Protocol Compliance: All server logic must strictly follow the Model Context Protocol (MCP) specification. Reference MCP docs and LLMs integration guide.
  • Transport Abstraction: Implement transport-agnostic logic. Use interfaces and dependency injection for HTTP, STDIO, or custom transports.
  • Service Layer: Encapsulate business logic in service classes. Each service should be stateless, testable, and expose clear async methods for protocol operations.
  • Schema Validation: Use zod for all input/output validation. Define schemas for requests, responses, and errors. Validate at the transport boundary.
  • Error Handling: Centralize error handling. Return MCP-compliant error objects with descriptive messages and codes.
  • Manifest & Tooling: Expose a manifest endpoint/tool for host integration. Manifest must declare all supported operations, schemas, and metadata.
  • Extensibility: Design for easy addition of new tools/operations. Use a registry or factory pattern for tool handlers.
  • Testing: Use Vitest for all tests. Place tests in tests/ and cover protocol, service, and transport logic.
  • Logging: Use a configurable logger. Avoid console.log for STDIO servers; use structured logging and log levels.
  • Async/Await: All operations must be async.
  • Type Safety: Use TypeScript interfaces and types for all protocol objects.
  • Configuration: Use environment variables and config files for secrets, endpoints, and options.
  • Documentation: Document all public classes, methods, and schemas.

Tool Implementation Patterns

  • Tool Registration: Register each tool in a central registry or manifest. Use a factory or mapping to resolve tool handlers by name.
  • Tool Handler Structure: Implement each tool as a class or function with a clear async run or execute method. Accept validated input, return structured output.
  • Schema-Driven: Define input/output schemas with zod. Validate all tool calls at runtime.
  • Error Propagation: Catch errors in tool handlers and return MCP-compliant error objects.
  • Resource Access: For resource tools (e.g., collections, bookmarks), encapsulate resource logic in dedicated service classes. Use dependency injection for external APIs.
  • Declarative Manifest: Ensure all tools and resources are declared in the manifest with their schemas, descriptions, and metadata.
  • Isolation: Tools should be stateless and not share mutable state. Use context objects for per-request data.
  • Extensibility: New tools/resources should be easy to add by implementing a handler and updating the manifest/registry.

Read the full file on GitHub · 44 lines

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 · 44 lines · 12 tokens per session scan A 8373b03418bd

Subscribe to this mod's changes

mcp-development is a skill published in the GitHub repository adeze/raindrop-mcp (183 stars, last pushed 1mo ago), licensed MIT. It adds 12 tokens to every session and 727 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

vinkius-deploy

How to deploy MCP servers to Vinkius Edge using mcpfusion deploy. Use this skill whenever deploying, configuring remote settings, preparing an entrypoint for edge deployment, or troubleshooting deploy-related errors. Activate when the user says "deploy", "publish to edge", "mcpfusion deploy", "push to Vinkius"…

vinkius-labs/mcpfusion · 94 tokens

verifying-compose-ui

Verifying Compose UI by rendering components or previews and inspecting the resulting images and state transitions. Activate for visual behavior that requires runtime rendering; use ordinary tests for nonvisual logic.

rnett/gradle-mcp · 40 tokens

ingest-gradle-upgrade

Ingests a Gradle wrapper upgrade for this repository: reads the release notes, upgrade guides, and linked documentation for the version upgraded to, then updates this repo's own code/tooling and the shipped Gradle MCP skills (src/main/skills/) so everything stays accurate for that version. Positive Triggers (when to…

rnett/gradle-mcp · 279 tokens

authoring-gradle-builds

Authoring and modifying Gradle build logic, including settings, plugins, dependencies, tasks, conventions, and upgrades. Activate when build files or plugins must change; use using-gradle for inspection or execution without build-definition edits.

rnett/gradle-mcp · 52 tokens

advanced-gradle-dependencies

Analyzing advanced Gradle dependency behavior, including resolution, variants, capabilities, conflicts, constraints, and publication metadata. Activate for dependency-resolution design or diagnosis; use authoring-gradle-builds for routine dependency declarations.

rnett/gradle-mcp · 49 tokens

issue-management

Create, update, list and search GitHub issues and PRs, list a repository's labels, run milestones, and check for duplicates.

saidsef/mcp-github-pr-issue-analyser · 27 tokens