mcp-development

MCP server development including tool design, resource endpoints, prompt templates, and transport configuration

Content Preview
---
name: mcp-development
description: MCP server development including tool design, resource endpoints, prompt templates, and transport configuration
---

# MCP Development

## MCP Server with Tools

```typescript
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import { z } from "zod";

const server = new McpServer({
  name: "project-tools",
  version: "1.0.0",
});

server.tool(
  "search_file
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/mcp-development.md \
  https://raw.githubusercontent.com/rohitg00/awesome-claude-code-toolkit/main/skills/mcp-development/SKILL.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/rohitg00/awesome-claude-code-toolkit

Then reference at skills/mcp-development/SKILL.md

Related Skills