mcp-readme

mcp-readme is a cursor rule for Cursor from Novalya-Labs/plane-mcp-server. It costs 0 tokens per session (3,844 once invoked), scanned A, a copy of typescript_sdk_readme, MIT.

A README for the TypeScript SDK used to build Model Context Protocol servers and clients. MCP is a standard way for applications to provide AI systems with tools, prompts, and data.

In plain words
What is it for?
Use it as a reference when creating MCP servers or clients, exposing tools and resources, and running them over standard connections such as local input/output or HTTP.
Why use it?
It explains the protocol's main concepts, installation, transports, examples, and testing so developers can work with the SDK without knowing MCP first.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

Good fit Use it as a reference when creating MCP servers or clients, exposing tools and resources, and running them over standard connections such as local input/output or HTTP.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/novalya-labs/plane-mcp-server/mcp-readme
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.

Clone the repo
git clone --depth 1 https://github.com/Novalya-Labs/plane-mcp-server

Made for: Cursor.

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-readme

README.md
[![agentmods](https://agentmods.dev/badge/rules/novalya-labs/plane-mcp-server/mcp-readme/github.svg)](https://agentmods.dev/rules/novalya-labs/plane-mcp-server/mcp-readme)
Your own site
<a href="https://agentmods.dev/rules/novalya-labs/plane-mcp-server/mcp-readme"><img src="https://agentmods.dev/badge/rules/novalya-labs/plane-mcp-server/mcp-readme/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mcp-readme

Your own site · 80×15
<a href="https://agentmods.dev/rules/novalya-labs/plane-mcp-server/mcp-readme"><img src="https://agentmods.dev/badge/rules/novalya-labs/plane-mcp-server/mcp-readme.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 3,844 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00000 $0.03844
Opus 5 $0.00000 $0.01922
Sonnet 5 $0.00000 $0.00769
Haiku 4.5 $0.00000 $0.00384

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

Security

Grade A, and why

mcp-readme 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 8d 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 typescript_sdk_readme — 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.

.cursor/rules/mcp-readme.mdc · 616 lines

How it starts

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

MCP TypeScript SDK NPM Version MIT licensed

Table of Contents

Overview

The Model Context Protocol allows applications to provide context for LLMs in a standardized way, separating the concerns of providing context from the actual LLM interaction. This TypeScript SDK implements the full MCP specification, making it easy to:

  • Build MCP clients that can connect to any MCP server
  • Create MCP servers that expose resources, prompts and tools
  • Use standard transports like stdio and SSE
  • Handle all MCP protocol messages and lifecycle events

Installation

npm install @modelcontextprotocol/sdk

Quick Start

Let's create a simple MCP server that exposes a calculator tool and some data:

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

// Create an MCP server
const server = new McpServer({
  name: "Demo",
  version: "1.0.0"
});

// Add an addition tool
server.tool("add",
  { a: z.number(), b: z.number() },
  async ({ a, b }) => ({
    content: [{ type: "text", text: String(a + b) }]
  })
);

// Add a dynamic greeting resource
server.resource(
  "greeting",
  new ResourceTemplate("greeting://{name}", { list: undefined }),
  async (uri, { name }) => ({
    contents: [{
      uri: uri.href,
      text: `Hello, ${name}!`
    }]
  })
);

// Start receiving messages on stdin and sending messages on stdout
const transport = new StdioServerTransport();
await server.connect(transport);

Read the full file on GitHub · 616 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. 8d ago First seen · 616 lines · 0 tokens per session scan A 2b457e827462

Subscribe to this mod's changes

mcp-readme is a cursor rule published in the GitHub repository Novalya-Labs/plane-mcp-server (0 stars, last pushed 1y ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 3,844 tokens. A static security scan graded it A with 0 findings. It is 100% identical to typescript_sdk_readme, differing in 0 lines, and is treated as a copy.