mcsrc-mcp typescript-mcp-server.instructions.md

mcsrc-mcp typescript-mcp-server.instructions.md is an instructions file for GitHub Copilot from mnooseman/mcsrc-mcp. It costs 1,760 tokens per session, scanned A, a copy of ssd-ai typescript-mcp-server.instructions.md, MIT.

Instructions for building Model Context Protocol servers in TypeScript. Model Context Protocol, or MCP, is a standard way for AI agents to use tools, data sources, and reusable prompts.

In plain words
What is it for?
Use them to create MCP tools, resources, and prompts with the TypeScript SDK, define schemas with Zod, return structured data, and connect servers over standard input/output or HTTP.
Why use it?
They provide conventions for server structure, input validation, responses, and local or HTTP connections. This helps avoid incompatible interfaces and common request-handling problems.

Instructions file for GitHub Copilot

Written for GitHub Copilot: a Copilot chat mode or prompt.

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/mnooseman/mcsrc-mcp/typescript-mcp-server
Clone the repo
git clone --depth 1 https://github.com/mnooseman/mcsrc-mcp

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 mcsrc-mcp typescript-mcp-server.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/mnooseman/mcsrc-mcp/typescript-mcp-server.svg)](https://agentmods.dev/instructions/mnooseman/mcsrc-mcp/typescript-mcp-server)
Your own site
<a href="https://agentmods.dev/instructions/mnooseman/mcsrc-mcp/typescript-mcp-server"><img src="https://agentmods.dev/badge/instructions/mnooseman/mcsrc-mcp/typescript-mcp-server.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,760 This file is loaded in full into every session.
When invoked 1,760 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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.01760 $0.01760
Opus 5 $0.00880 $0.00880
Sonnet 5 $0.00352 $0.00352
Haiku 4.5 $0.00176 $0.00176

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

Security

Grade A, and why

mcsrc-mcp typescript-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 5d 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.

Origin

This is a copy

100% identical to ssd-ai typescript-mcp-server.instructions.md — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.github/instructions/typescript-mcp-server.instructions.md · 229 lines

How it starts

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

TypeScript MCP Server Development

Instructions

  • Use the @modelcontextprotocol/sdk npm package: npm install @modelcontextprotocol/sdk
  • Import from specific paths: @modelcontextprotocol/sdk/server/mcp.js, @modelcontextprotocol/sdk/server/stdio.js, etc.
  • Use McpServer class for high-level server implementation with automatic protocol handling
  • Use Server class for low-level control with manual request handlers
  • Use zod for input/output schema validation: npm install zod@3
  • Always provide title field for tools, resources, and prompts for better UI display
  • Use registerTool(), registerResource(), and registerPrompt() methods (recommended over older APIs)
  • Define schemas using zod: { inputSchema: { param: z.string() }, outputSchema: { result: z.string() } }
  • Return both content (for display) and structuredContent (for structured data) from tools
  • For HTTP servers, use StreamableHTTPServerTransport with Express or similar frameworks
  • For local integrations, use StdioServerTransport for stdio-based communication
  • Create new transport instances per request to prevent request ID collisions (stateless mode)
  • Use session management with sessionIdGenerator for stateful servers
  • Enable DNS rebinding protection for local servers: enableDnsRebindingProtection: true
  • Configure CORS headers and expose Mcp-Session-Id for browser-based clients
  • Use ResourceTemplate for dynamic resources with URI parameters: new ResourceTemplate('resource://{param}', { list: undefined })
  • Support completions for better UX using completable() wrapper from @modelcontextprotocol/sdk/server/completable.js
  • Implement sampling with server.server.createMessage() to request LLM completions from clients
  • Use server.server.elicitInput() to request additional user input during tool execution
  • Enable notification debouncing for bulk updates: debouncedNotificationMethods: ['notifications/tools/list_changed']
  • Dynamic updates: call .enable(), .disable(), .update(), or .remove() on registered items to emit listChanged notifications
  • Use getDisplayName() from @modelcontextprotocol/sdk/shared/metadataUtils.js for UI display names
  • Test servers with MCP Inspector: npx @modelcontextprotocol/inspector

Read the full file on GitHub · 229 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. 5d ago First seen · 229 lines · 1,760 tokens per session scan A a3b081f30ef9

Subscribe to this mod's changes

mcsrc-mcp typescript-mcp-server.instructions.md is an instructions file published in the GitHub repository mnooseman/mcsrc-mcp (2 stars, last pushed 7mo ago), licensed MIT. It adds 1,760 tokens to every session, about $0.0088 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to ssd-ai typescript-mcp-server.instructions.md, differing in 0 lines, and is treated as a copy.