awesome-claude-copilot csharp-mcp-server.instructions.md

awesome-claude-copilot csharp-mcp-server.instructions.md is an instructions file for GitHub Copilot from RorroRojas3/awesome-claude-copilot. It costs 938 tokens per session, scanned A, original, MIT.

Guidelines for creating Model Context Protocol (MCP) servers in C#. MCP servers let AI tools call your code through defined tools and prompts.

In plain words
What is it for?
Use them when building C# MCP servers that communicate over standard input/output or HTTP, expose tools and prompts, or call back to the client for sampling.
Why use it?
They provide consistent choices for packages, transports, logging, tool registration, and dependency injection, reducing setup mistakes.

Instructions file for GitHub Copilot

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 instructions/rorrorojas3/awesome-claude-copilot/csharp-mcp-server
Clone the repo
git clone --depth 1 https://github.com/RorroRojas3/awesome-claude-copilot

Made for: GitHub Copilot.

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 awesome-claude-copilot csharp-mcp-server.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/rorrorojas3/awesome-claude-copilot/csharp-mcp-server.svg)](https://agentmods.dev/instructions/rorrorojas3/awesome-claude-copilot/csharp-mcp-server)
Your own site
<a href="https://agentmods.dev/instructions/rorrorojas3/awesome-claude-copilot/csharp-mcp-server"><img src="https://agentmods.dev/badge/instructions/rorrorojas3/awesome-claude-copilot/csharp-mcp-server.svg" alt="Measured on agentmods" height="20"></a>
Per session 938 This file is loaded in full into every session.
When invoked 938 The same file — it is already loaded in full.
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.1 $0.00938 $0.00938
Opus 5 $0.00469 $0.00469
Sonnet 5 $0.00188 $0.00188
Haiku 4.5 $0.00094 $0.00094

Measured 4d ago against content hash beaf36bbbe89, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

awesome-claude-copilot csharp-mcp-server.instructions.md 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/instructions/csharp-mcp-server.instructions.md · 96 lines

How it starts

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

C# MCP Server Development

Instructions

  • Use the ModelContextProtocol NuGet package (prerelease) for most projects: dotnet add package ModelContextProtocol --prerelease
  • Use ModelContextProtocol.AspNetCore for HTTP-based MCP servers
  • Use ModelContextProtocol.Core for minimal dependencies (client-only or low-level server APIs)
  • Always configure logging to stderr using LogToStandardErrorThreshold = LogLevel.Trace to avoid interfering with stdio transport
  • Use the [McpServerToolType] attribute on classes containing MCP tools
  • Use the [McpServerTool] attribute on methods to expose them as tools
  • Use the [Description] attribute from System.ComponentModel to document tools and parameters
  • Support dependency injection in tool methods - inject McpServer, HttpClient, or other services as parameters
  • Use McpServer.AsSamplingChatClient() to make sampling requests back to the client from within tools
  • Expose prompts using [McpServerPromptType] on classes and [McpServerPrompt] on methods
  • For stdio transport, use WithStdioServerTransport() when building the server
  • Use WithToolsFromAssembly() to auto-discover and register all tools from the current assembly
  • Tool methods can be synchronous or async (return Task or Task<T>)
  • Always include comprehensive descriptions for tools and parameters to help LLMs understand their purpose
  • Use CancellationToken parameters in async tools for proper cancellation support
  • Return simple types (string, int, etc.) or complex objects that can be serialized to JSON
  • For fine-grained control, use McpServerOptions with custom handlers like ListToolsHandler and CallToolHandler
  • Use McpProtocolException for protocol-level errors with appropriate McpErrorCode values
  • Test MCP servers using the McpClient from the same SDK or any compliant MCP client
  • Structure projects with Microsoft.Extensions.Hosting for proper DI and lifecycle management

Best Practices

  • Keep tool methods focused and single-purpose
  • Use meaningful tool names that clearly indicate their function
  • Provide detailed descriptions that explain what the tool does, what parameters it expects, and what it returns
  • Validate input parameters and throw McpProtocolException with McpErrorCode.InvalidParams for invalid inputs
  • Use structured logging to help with debugging without polluting stdout
  • Organize related tools into logical classes with [McpServerToolType]
  • Consider security implications when exposing tools that access external resources
  • Use the built-in DI container to manage service lifetimes and dependencies
  • Implement proper error handling and return meaningful error messages
  • Test tools individually before integrating with LLMs

Read the full file on GitHub · 96 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 · 96 lines · 938 tokens per session scan A beaf36bbbe89

Subscribe to this mod's changes

awesome-claude-copilot csharp-mcp-server.instructions.md is an instructions file published in the GitHub repository RorroRojas3/awesome-claude-copilot (0 stars, last pushed 9d ago), licensed MIT. It adds 938 tokens to every session, about $0.0047 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-09-01.

Related

Other instructions, from other repositories

maui performance-hotpaths.instructions.md

Instructions for dotnet/maui, covering performance-critical path rules, hot paths in maui, allocation avoidance, caching and invalidation and collection iteration.

dotnet/maui · 441 tokens

maui-labs testing.instructions.md

Instructions for dotnet/maui-labs, covering testing guide, test framework, test projects, running tests and all tests.

dotnet/maui-labs · 912 tokens

Kucoin.Net copilot-instructions.md

Copilot instructions for JKorf/Kucoin.Net, covering copilot instructions for kucoin.net, use kucoin.net, not raw http, client setup, result handling and api structure.

JKorf/Kucoin.Net · 849 tokens

coinex-net

Use CoinEx.Net when generating C#/.NET code that interacts with the CoinEx cryptocurrency exchange, including Spot V2, margin account operations, futures, REST endpoints, WebSocket subscriptions, account management, market data, or order placement. Triggers on requests mentioning CoinEx integration in C#, .NET…

JKorf/CoinEx.Net · 2,253 tokens

MonorailCss.Framework CLAUDE.md

Claude Code instructions for monorailcss/MonorailCss.Framework, covering monorailcss, architecture overview, core components, key design patterns and project structure.

monorailcss/MonorailCss.Framework · 1,386 tokens

unity-code-style-guide AGENTS.md

Instructions for krogh-jacobsen/unity-code-style-guide, covering agents.md — unity 6 c, project setup — edit this block, never do these — they corrupt the project, deprecated in unity 6 and if you read nothing else.

krogh-jacobsen/unity-code-style-guide · 4,528 tokens