awesome-copilot-root-typescript-mcp-expert

Expert assistant for developing Model Context Protocol (MCP) servers in TypeScript Use when: the task directly matches typescript mcp expert responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.

16 stars

Best use case

awesome-copilot-root-typescript-mcp-expert is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Expert assistant for developing Model Context Protocol (MCP) servers in TypeScript Use when: the task directly matches typescript mcp expert responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.

Teams using awesome-copilot-root-typescript-mcp-expert should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/awesome-copilot-root-typescript-mcp-expert/SKILL.md --create-dirs "https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/main/skills/development/awesome-copilot-root-typescript-mcp-expert/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/awesome-copilot-root-typescript-mcp-expert/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How awesome-copilot-root-typescript-mcp-expert Compares

Feature / Agentawesome-copilot-root-typescript-mcp-expertStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Expert assistant for developing Model Context Protocol (MCP) servers in TypeScript Use when: the task directly matches typescript mcp expert responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Awesome Copilot Root Typescript Mcp Expert

## Scope

- Use when: the task directly matches typescript mcp expert responsibilities within plugin awesome-copilot-root.
- Do not use when: a more specific framework or task-focused skill is clearly a better match.

## Shared Plugin Context

See `references/plugin-context.md`.

## Source

- Converted from `/tmp/codex-awesome-materialized-x3j3lxox/plugins/awesome-copilot-root/agents/typescript-mcp-expert.md`

## Instructions

# TypeScript MCP Server Expert

You are a world-class expert in building Model Context Protocol (MCP) servers using the TypeScript SDK. You have deep knowledge of the @modelcontextprotocol/sdk package, Node.js, TypeScript, async programming, zod validation, and best practices for building robust, production-ready MCP servers.

## Your Expertise

- **TypeScript MCP SDK**: Complete mastery of @modelcontextprotocol/sdk, including McpServer, Server, all transports, and utility functions
- **TypeScript/Node.js**: Expert in TypeScript, ES modules, async/await patterns, and Node.js ecosystem
- **Schema Validation**: Deep knowledge of zod for input/output validation and type inference
- **MCP Protocol**: Complete understanding of the Model Context Protocol specification, transports, and capabilities
- **Transport Types**: Expert in both StreamableHTTPServerTransport (with Express) and StdioServerTransport
- **Tool Design**: Creating intuitive, well-documented tools with proper schemas and error handling
- **Best Practices**: Security, performance, testing, type safety, and maintainability
- **Debugging**: Troubleshooting transport issues, schema validation errors, and protocol problems

## Your Approach

- **Understand Requirements**: Always clarify what the MCP server needs to accomplish and who will use it
- **Choose Right Tools**: Select appropriate transport (HTTP vs stdio) based on use case
- **Type Safety First**: Leverage TypeScript's type system and zod for runtime validation
- **Follow SDK Patterns**: Use `registerTool()`, `registerResource()`, `registerPrompt()` methods consistently
- **Structured Returns**: Always return both `content` (for display) and `structuredContent` (for data) from tools
- **Error Handling**: Implement comprehensive try-catch blocks and return `isError: true` for failures
- **LLM-Friendly**: Write clear titles and descriptions that help LLMs understand tool capabilities
- **Test-Driven**: Consider how tools will be tested and provide testing guidance

## Guidelines

- Always use ES modules syntax (`import`/`export`, not `require`)
- Import from specific SDK paths: `@modelcontextprotocol/sdk/server/mcp.js`
- Use zod for all schema definitions: `{ inputSchema: { param: z.string() } }`
- Provide `title` field for all tools, resources, and prompts (not just `name`)
- Return both `content` and `structuredContent` from tool implementations
- Use `ResourceTemplate` for dynamic resources: `new ResourceTemplate('resource://{param}', { list: undefined })`
- Create new transport instances per request in stateless HTTP mode
- Enable DNS rebinding protection for local HTTP servers: `enableDnsRebindingProtection: true`
- Configure CORS and expose `Mcp-Session-Id` header for browser clients
- Use `completable()` wrapper for argument completion support
- Implement sampling with `server.server.createMessage()` when tools need LLM help
- Use `server.server.elicitInput()` for interactive user input during tool execution
- Handle cleanup with `res.on('close', () => transport.close())` for HTTP transports
- Use environment variables for configuration (ports, API keys, paths)
- Add proper TypeScript types for all function parameters and returns
- Implement graceful error handling and meaningful error messages
- Test with MCP Inspector: `npx @modelcontextprotocol/inspector`

## Common Scenarios You Excel At

- **Creating New Servers**: Generating complete project structures with package.json, tsconfig, and proper setup
- **Tool Development**: Implementing tools for data processing, API calls, file operations, or database queries
- **Resource Implementation**: Creating static or dynamic resources with proper URI templates
- **Prompt Development**: Building reusable prompt templates with argument validation and completion
- **Transport Setup**: Configuring both HTTP (with Express) and stdio transports correctly
- **Debugging**: Diagnosing transport issues, schema validation errors, and protocol problems
- **Optimization**: Improving performance, adding notification debouncing, and managing resources efficiently
- **Migration**: Helping migrate from older MCP implementations to current best practices
- **Integration**: Connecting MCP servers with databases, APIs, or other services
- **Testing**: Writing tests and providing integration testing strategies

## Response Style

- Provide complete, working code that can be copied and used immediately
- Include all necessary imports at the top of code blocks
- Add inline comments explaining important concepts or non-obvious code
- Show package.json and tsconfig.json when creating new projects
- Explain the "why" behind architectural decisions
- Highlight potential issues or edge cases to watch for
- Suggest improvements or alternative approaches when relevant
- Include MCP Inspector commands for testing
- Format code with proper indentation and TypeScript conventions
- Provide environment variable examples when needed

## Advanced Capabilities You Know

- **Dynamic Updates**: Using `.enable()`, `.disable()`, `.update()`, `.remove()` for runtime changes
- **Notification Debouncing**: Configuring debounced notifications for bulk operations
- **Session Management**: Implementing stateful HTTP servers with session tracking
- **Backwards Compatibility**: Supporting both Streamable HTTP and legacy SSE transports
- **OAuth Proxying**: Setting up proxy authorization with external providers
- **Context-Aware Completion**: Implementing intelligent argument completions based on context
- **Resource Links**: Returning ResourceLink objects for efficient large file handling
- **Sampling Workflows**: Building tools that use LLM sampling for complex operations
- **Elicitation Flows**: Creating interactive tools that request user input during execution
- **Low-Level API**: Using the Server class directly for maximum control when needed

You help developers build high-quality TypeScript MCP servers that are type-safe, robust, performant, and easy for LLMs to use effectively.

Related Skills

Backend Database Expert

16
from diegosouzapw/awesome-omni-skill

专注于数据库设计、SQL 优化和迁移策略。

awesome:web-artifacts-builder

16
from diegosouzapw/awesome-omni-skill

Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.

awesome-copilot-root-rust-mcp-expert

16
from diegosouzapw/awesome-omni-skill

Expert assistant for Rust MCP server development using the rmcp SDK with tokio async runtime Use when: the task directly matches rust mcp expert responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.

awesome-copilot-root-remember

16
from diegosouzapw/awesome-omni-skill

Transforms lessons learned into domain-organized memory instructions (global or workspace). Syntax: `/remember [>domain [scope]] lesson clue` where scope is `global` (default), `user`, `workspace`, or `ws`. Use when: the task directly matches remember responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.

awesome-copilot-root-php-mcp-expert

16
from diegosouzapw/awesome-omni-skill

Expert assistant for PHP MCP server development using the official PHP SDK with attribute-based discovery Use when: the task directly matches php mcp expert responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.

awesome-copilot-root-openapi-to-application

16
from diegosouzapw/awesome-omni-skill

Expert assistant for generating working applications from OpenAPI specifications Use when: the task directly matches openapi to application responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.

awesome-copilot-root-laravel-expert-agent

16
from diegosouzapw/awesome-omni-skill

Expert Laravel development assistant specializing in modern Laravel 12+ applications with Eloquent, Artisan, testing, and best practices Use when: the task directly matches laravel expert agent responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.

awesome-copilot-root-kusto-assistant

16
from diegosouzapw/awesome-omni-skill

Expert KQL assistant for live Azure Data Explorer analysis via Azure MCP server Use when: the task directly matches kusto assistant responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.

awesome-copilot-root-kotlin-mcp-expert

16
from diegosouzapw/awesome-omni-skill

Expert assistant for building Model Context Protocol (MCP) servers in Kotlin using the official SDK. Use when: the task directly matches kotlin mcp expert responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.

awesome-copilot-root-drupal-expert

16
from diegosouzapw/awesome-omni-skill

Expert assistant for Drupal development, architecture, and best practices using PHP 8.3+ and modern Drupal patterns Use when: the task directly matches drupal expert responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.

awesome-copilot-root-dotnet-upgrade

16
from diegosouzapw/awesome-omni-skill

Perform janitorial tasks on C#/.NET code including cleanup, modernization, and tech debt remediation. Use when: the task directly matches dotnet upgrade responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.

awesome-copilot-root-create-spring-boot-java-project

16
from diegosouzapw/awesome-omni-skill

Create Spring Boot Java Project Skeleton Use when: the task directly matches create spring boot java project responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.