mcp-hello-typescript-server CLAUDE.md

mcp-hello-typescript-server CLAUDE.md is an instructions file for Claude Code from mitchallen/mcp-hello-typescript-server. It costs 2,438 tokens per session, scanned A, original, MIT.

Project instructions for a small TypeScript MCP server that reports its status and returns greetings in several languages.

In plain words
What is it for?
Use them when building, testing, or extending the example MCP server and its greeting or status tools.
Why use it?
They explain the project layout, conventions, tools, and security checks so changes remain compatible with this demonstration server.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md.

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

Made for: Claude Code.

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 mcp-hello-typescript-server CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/mitchallen/mcp-hello-typescript-server/claude-md.svg)](https://agentmods.dev/instructions/mitchallen/mcp-hello-typescript-server/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/mitchallen/mcp-hello-typescript-server/claude-md"><img src="https://agentmods.dev/badge/instructions/mitchallen/mcp-hello-typescript-server/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,438 This file is loaded in full into every session.
When invoked 2,438 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.02438 $0.02438
Opus 5 $0.01219 $0.01219
Sonnet 5 $0.00488 $0.00488
Haiku 4.5 $0.00244 $0.00244

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

Security

Grade A, and why

mcp-hello-typescript-server CLAUDE.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.

CLAUDE.md · 159 lines

How it starts

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

mcp-hello-typescript-server — notes for Claude

A minimal MCP server built with TypeScript and the official @modelcontextprotocol/sdk — a good starting point for a new server or a demo. It exposes two tools: server_info (a health/status check) and greet (a friendly greeting in one of a handful of languages, defaulting to English). Built with npm, tsc, and make; a multi-stage Docker build compiles the TypeScript and runs it on a distroless Chainguard/Wolfi node base (cgr.dev/chainguard/node). It is the TypeScript port of the sibling Python mcp-hello-server, following the official MCP Build a server (TypeScript) reference (alongside the Go mcp-hello-go-server and Rust mcp-hello-rust-server ports).

Layout

  • src/greetings.ts — greeting data (GREETINGS), language resolution (names, aliases, ISO codes), and the greet() builder. Unit-tested in tests/greetings.test.ts.
  • src/server.tscreateServer() builds the McpServer, defines the tool input/output schemas (zod) and handlers, and registers them with server.registerTool. Tools return structuredContent for the structured result.
  • src/version.ts — reads the version from package.json at runtime (the single source of truth) so the MCP handshake and server_info stay in sync.
  • src/index.ts — the entry point; picks the transport from MCP_TRANSPORT and wires up stdio (StdioServerTransport) or streamable HTTP (StreamableHTTPServerTransport on a node:http server, stateless, mounted at /mcp).
  • tests/server.test.ts — integration tests connecting a client and server over InMemoryTransport.createLinkedPair() (the analog of the Python suite's in-memory FastMCP client). No network, no subprocess.

Conventions

  • Build / deps: npm. package.json / package-lock.json are committed and the Dockerfile installs npm ci from the lockfile. make build = tscbuild/. Run npm install after changing dependencies to refresh the lock.
  • Version: the source of truth is "version" in package.json; make release bumps it with npm version. src/version.ts reads it at runtime.
  • Running: make run (stdio, the default MCP transport, from source via tsx), make run-http (streamable HTTP on PORT, default 8000). The transport is chosen by MCP_TRANSPORT (stdio | http); the HTTP endpoint is /mcp.
  • Tests / gate: make test (node --test), make check (prettier check + tsc --noEmit + tests) — the CI gate.
  • Adding a language: add a row to GREETINGS in greetings.ts (and, optionally, an alias / ISO code to ALIASES). server_info reports the set automatically.
  • Docker: the image defaults to HTTP transport (MCP_TRANSPORT=http, HOST=0.0.0.0, PORT=8000). TypeScript is compiled in a builder stage on cgr.dev/chainguard/node:latest-dev; the pruned production node_modules, the compiled build/, and package.json are copied onto cgr.dev/chainguard/node:latest, which has no shell / package manager and runs as the non-root node user (uid 65532). Its entrypoint is node, so the Dockerfile uses CMD ["build/index.js"]. make scan should report 0 CRITICAL/HIGH.
  • Releasing: make release (BUMP=patch|minor|major, default patch) bumps the version in package.json (+ package-lock.json), commits, tags vX.Y.Z, pushes, and creates the matching GitHub Release from the CHANGELOG.md section. The tag triggers the GHCR + Docker Hub publish workflows. It refuses to run unless the tree is clean, you're on main, and CHANGELOG.md already has the new version's section.

Read the full file on GitHub · 159 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 · 159 lines · 2,438 tokens per session scan A 3f568e211c8b

Subscribe to this mod's changes

mcp-hello-typescript-server CLAUDE.md is an instructions file published in the GitHub repository mitchallen/mcp-hello-typescript-server (0 stars, last pushed 2d ago), licensed MIT. It adds 2,438 tokens to every session, about $0.0122 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

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,182 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens