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.
npx agentmods add instructions/ssdeanx/ssd-ai/typescript-mcp-servergit clone --depth 1 https://github.com/ssdeanx/ssd-aiWrote 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.
[](https://agentmods.dev/instructions/ssdeanx/ssd-ai/typescript-mcp-server)<a href="https://agentmods.dev/instructions/ssdeanx/ssd-ai/typescript-mcp-server"><img src="https://agentmods.dev/badge/instructions/ssdeanx/ssd-ai/typescript-mcp-server.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.01760 | $0.01760 |
| Opus 5 | $0.00880 | $0.00880 |
| Sonnet 5 | $0.00352 | $0.00352 |
| Haiku 4.5 | $0.00176 | $0.00176 |
Grade A, and why
ssd-ai 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 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- mcsrc-mcp typescript-mcp-server.instructions.md — 100% identical, 0 lines differ
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
McpServerclass for high-level server implementation with automatic protocol handling - Use
Serverclass for low-level control with manual request handlers - Use zod for input/output schema validation:
npm install zod@3 - Always provide
titlefield for tools, resources, and prompts for better UI display - Use
registerTool(),registerResource(), andregisterPrompt()methods (recommended over older APIs) - Define schemas using zod:
{ inputSchema: { param: z.string() }, outputSchema: { result: z.string() } } - Return both
content(for display) andstructuredContent(for structured data) from tools - For HTTP servers, use
StreamableHTTPServerTransportwith Express or similar frameworks - For local integrations, use
StdioServerTransportfor stdio-based communication - Create new transport instances per request to prevent request ID collisions (stateless mode)
- Use session management with
sessionIdGeneratorfor stateful servers - Enable DNS rebinding protection for local servers:
enableDnsRebindingProtection: true - Configure CORS headers and expose
Mcp-Session-Idfor browser-based clients - Use
ResourceTemplatefor 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 emitlistChangednotifications - Use
getDisplayName()from@modelcontextprotocol/sdk/shared/metadataUtils.jsfor UI display names - Test servers with MCP Inspector:
npx @modelcontextprotocol/inspector
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.
- 4d ago First seen · 229 lines · 1,760 tokens per session scan A a3b081f30ef9
ssd-ai typescript-mcp-server.instructions.md is an instructions file published in the GitHub repository ssdeanx/ssd-ai (3 stars, last pushed 8mo 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. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
Genesis-World-MCP AGENTS.md
AGENTS.md instructions for Gnidreve/Genesis-World-MCP, covering agents.md — cas genesisworld mcp, what this is, standing orders — read first, design pillars and source layout & conventions.
atelier-mcp copilot-instructions.md
Copilot instructions for anshrajore/atelier-mcp, covering run npm run sync-adapters to update, universal ui/ux rules, universal backend architecture rules and framework presets (available in skills/atelier/presets/).
atelier-mcp CLAUDE.md
Claude Code instructions for anshrajore/atelier-mcp, covering atelier quality gate adapter for claude code (claude.md), run npm run sync-adapters to update, universal ui/ux rules, universal backend architecture rules and framework presets (available in skills/atelier/presets/).
atelier-mcp AGENTS.md
AGENTS.md instructions for anshrajore/atelier-mcp, covering atelier quality gate adapter for agents.md, run npm run sync-adapters to update, universal ui/ux rules, universal backend architecture rules and framework presets (available in skills/atelier/presets/).
typescript-sdk CLAUDE.md
Claude Code instructions for modelcontextprotocol/typescript-sdk, covering claude.md, build & test commands, run a single package script (examples), breaking changes and code style guidelines.
mcpscore AGENTS.md
Instructions for mcp-box/mcpscore, covering agent instructions for mcpscore and gotchas (learned the hard way).