mcp-development
MCP server development including tool design, resource endpoints, prompt templates, and transport configuration
npx skills add rohitg00/awesome-claude-code-toolkit --skill mcp-development --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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_files", "Search for files matching a glob pattern in the project directory", { pattern: z.string().describe("Glob pattern (e.g., '**/*.ts')"), directory: z.string().optional().describe("Base directory to search from"), }, async ({ pattern, directory }) => { const files = await glob(pattern, { cwd: directory ?? process.cwd() }); return { content: [ { type: "text", text: files.length > 0 ? files.join("\n") : `No files found matching ${pattern}`, }, ], }; } ); server.tool( "run_query", "Execute a read-only SQL query against the application database", { query: z.string().describe("SQL SELECT query to execute"), limit: z.number().default(100).describe("Maximum rows to return"), }, async ({ query, limit }) => { if (!query.trim().toUpperCase().startsWith("SELECT")) { return { content: [{ type: "text", text: "Only SELECT queries are allowed" }], isError: true, }; }
- MCP Server with Tools
- Resources
- Prompt Templates
- Client Configuration
- Transport Setup
- Anti-Patterns
- Checklist
What does the mcp-development skill do?
MCP server development including tool design, resource endpoints, prompt templates, and transport configuration
How do I install it?
Run `npx skills add rohitg00/awesome-claude-code-toolkit --skill mcp-development --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From rohitg00/awesome-claude-code-toolkit, a repository with 2,438 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.