typescript-mcp

Reference rules for using the TypeScript software development kit for MCP, a standard way for AI clients and external tools to communicate. They cover creating MCP servers, tools, resources, and prompts.

In plain words
What is it for?
Creating TypeScript MCP servers, defining callable tools and read-only resources, adding reusable prompts, and connecting servers over standard input and output.
Why use it?
They give developers the basic structure and examples needed to build MCP components in TypeScript.

Cursor rule for Cursor

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

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,379 The whole file, excluding the scripts and references it only reads on demand.
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 $0.00000 $0.01379
Opus 5 $0.00000 $0.00690
Sonnet 5 $0.00000 $0.00276
Haiku 4.5 $0.00000 $0.00138

Measured 2d ago against content hash 21d73a58daff, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

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

.cursor/rules/typescript-mcp.mdc · 172 lines

How it starts

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

MCP TypeScript SDK

MCP TypeScript SDK implements the full Model Context Protocol specification, allowing you to build MCP servers and clients using TypeScript.

Installation

npm install @modelcontextprotocol/sdk --save
# or
yarn add @modelcontextprotocol/sdk

Quickstart: Create an MCP Server

import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import { z } from "zod";

const server = new McpServer({ name: "DemoServer", version: "1.0.0" });

// Define a simple addition tool
type AddParams = { a: number; b: number };
server.tool(
  "add",
  { a: z.number(), b: z.number() },
  async ({ a, b }: AddParams) => ({ content: [{ type: "text", text: `${a + b}` }] })
);

// Start listening on stdin/stdout transport
await server.connect(new StdioServerTransport());

Core Concepts

  • McpServer: entry point for protocol compliance, message routing, and lifecycle management.
  • Resources: read-only data endpoints via server.resource(name, template, handler) and ResourceTemplate.
  • Tools: action endpoints via server.tool(name, schema, executor).
  • Prompts: reusable message templates via server.prompt(name, schema, builder).
  • Transports: connect servers/clients over stdio, HTTP, SSE, or Streamable HTTP (StdioServerTransport, StreamableHttpServerTransport, etc.).

Preferred Transport: Streamable HTTP

Streamable HTTP is the recommended transport for production environments, offering full-duplex streaming, session management, and backward compatibility over older SSE-based transports.

Streamable HTTP Server Example

import express from "express";
import { randomUUID } from "crypto";
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { StreamableHTTPServerTransport } from "@modelcontextprotocol/sdk/server/streamableHttp.js";
import { isInitializeRequest } from "@modelcontextprotocol/sdk/types.js";

const app = express();
app.use(express.json());

const server = new McpServer({ name: "StreamableExample", version: "1.0.0" });
const transports: Record<string, StreamableHTTPServerTransport> = {};

app.post('/mcp', async (req, res) => {
  const sid = req.headers['mcp-session-id'] as string | undefined;
  let transport: StreamableHTTPServerTransport;

  if (sid && transports[sid]) {
    transport = transports[sid];
  } else if (!sid && isInitializeRequest(req.body)) {
    transport = new StreamableHTTPServerTransport({
      sessionIdGenerator: () => randomUUID(),
      onsessioninitialized: (sessionId) => (transports[sessionId] = transport)
    });
    transport.onclose = () => delete transports[transport.sessionId!];
  } else {
    res.status(400).send("Invalid request");
    return;
  }

  await server.connect(transport);
  transport.handleRequest(req, res);
});

const PORT = process.env.PORT ?? 3000;
app.listen(PORT, () => console.log(`MCP Streamable HTTP server listening on ${PORT}`));

Read the full file on GitHub · 172 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. 2d ago First seen · 172 lines · 1,379 tokens per session scan A 21d73a58daff

Subscribe to this mod's changes

typescript-mcp is a cursor rule published in the GitHub repository jhgaylor/node-candidate-mcp-server (81 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,379 tokens. 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-30.