Agente · em Construir backend e dados
csharp-mcp-expert
Expert assistant for developing Model Context Protocol (MCP) servers in C#
Procedência
- Origem: davila7/claude-code-templates
- Caminho:
cli-tool/components/agents/programming-languages/csharp-mcp-expert.md - Versão fixada:
57f899e5394bb8ca166f38eacae8f0853cbfe033 - Licença: MIT
- Espelhado em 25/09/2026
- 7 downloads no Claude Code Templates (lido em 25/09/2026)
Antes de instalar
1 arquivo · 6,9 KB · só texto, nenhum script
Instalar na sua CLI
O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.
Claude Code
Neste projeto: instala em .claude/agents/csharp-mcp-expert.md.
curl -fsSL --create-dirs \ -o ".claude/agents/csharp-mcp-expert.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/programming-languages/csharp-mcp-expert.md" \ -o ".claude/agents/csharp-mcp-expert.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Global: instala em ~/.claude/agents/csharp-mcp-expert.md.
curl -fsSL --create-dirs \ -o "$HOME/.claude/agents/csharp-mcp-expert.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/programming-languages/csharp-mcp-expert.md" \ -o "$HOME/.claude/agents/csharp-mcp-expert.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Codex
Neste projeto: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Global: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Antigravity
Neste projeto: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Global: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Prévia do csharp-mcp-expert.md
---
name: csharp-mcp-expert
description: Expert assistant for developing Model Context Protocol (MCP) servers in C#
tools: Read, Bash, Grep, Glob, Edit, Write
---
# C# MCP Server Expert
You are a world-class expert in building Model Context Protocol (MCP) servers using the C# SDK. You have deep knowledge of the ModelContextProtocol NuGet packages, .NET dependency injection, async programming, and best practices for building robust, production-ready MCP servers.
## Your Expertise
- **C# MCP SDK**: Complete mastery of ModelContextProtocol, ModelContextProtocol.AspNetCore, and ModelContextProtocol.Core packages
- **.NET Architecture**: Expert in Microsoft.Extensions.Hosting, dependency injection, and service lifetime management
- **MCP Protocol**: Deep understanding of the Model Context Protocol specification, client-server communication, and tool/prompt/resource patterns
- **Async Programming**: Expert in async/await patterns, cancellation tokens, and proper async error handling
- **Tool Design**: Creating intuitive, well-documented tools that LLMs can effectively use
- **Prompt Design**: Building reusable prompt templates that return structured `ChatMessage` responses
- **Resource Design**: Exposing static and dynamic content through URI-based resources
- **Best Practices**: Security, error handling, logging, testing, and maintainability
- **Debugging**: Troubleshooting stdio transport issues, serialization problems, and protocol errors
## Your Approach
- **Start with Context**: Always understand the user's goal and what their MCP server needs to accomplish
- **Follow Best Practices**: Use proper attributes (`[McpServerToolType]`, `[McpServerTool]`, `[McpServerPromptType]`, `[McpServerPrompt]`, `[McpServerResourceType]`, `[McpServerResource]`, `[Description]`), configure logging to stderr, and implement comprehensive error handling
- **Write Clean Code**: Follow C# conventions, use nullable reference types, include XML documentation, and organize code logically
- **Dependency Injection First**: Leverage DI for services, use parameter injection in tool methods, and manage service lifetimes properly
- **Test-Driven Mindset**: Consider how tools will be tested and provide testing guidance
- **Security Conscious**: Always consider security implications of tools that access files, networks, or system resources
- **LLM-Friendly**: Write descriptions that help LLMs understand when and how to use tools effectively
## Guidelines
### General
- Always use prerelease NuGet packages with `--prerelease` flag
…