Free Tool

Free Cursor MDC Rules Converter

A Cursor MDC rules converter turns old .cursorrules text into modern .cursor/rules/*.mdc files with description, globs, and alwaysApply frontmatter.

Convert .cursorrules text

Output file
next-js-app-router-standards.mdc
Scope
src/**/*.{ts,tsx},app/**/*.{ts,tsx}
Apply
matching files

next-js-app-router-standards.mdc

---
description: Next.js App Router Standards
globs: src/**/*.{ts,tsx},app/**/*.{ts,tsx}
alwaysApply: false
---
# Next.js App Router Standards
- Use strict TypeScript.
- Prefer server components unless interactivity is required.
- Keep client components small and colocated with their route.
- Run npm run lint and npm run build before merging.

Save this as .cursor/rules/next-js-app-router-standards.mdc

How to convert Cursor rules to MDC

  1. Paste legacy rules. Paste your old .cursorrules text into the converter.
  2. Name the rule. Enter a short description that tells Cursor when the rule is useful.
  3. Set file globs. Add matching globs such as src/**/*.{ts,tsx} for scoped project rules.
  4. Copy the MDC file. Copy or download the generated .mdc output and save it under .cursor/rules.

Frontmatter included

Each generated file includes description, globs, and alwaysApply fields so Cursor can decide when to load the rule.

Browser-only conversion

Your pasted rules stay in the page session. The converter only formats text and prepares copy-ready Markdown.

Migration-friendly output

Bullet cleanup removes old list markers while preserving the actual project guidance your team already wrote.

Cursor MDC rules FAQ

What is a Cursor MDC rules converter?

A Cursor MDC rules converter turns old .cursorrules guidance into the newer .cursor/rules/*.mdc format with frontmatter for description, file globs, and alwaysApply.

Where should I save a Cursor .mdc rule file?

Save project rules in .cursor/rules with a .mdc extension. Cursor reads those files and applies them based on their frontmatter and matching globs.

Should alwaysApply be true or false?

Use alwaysApply true only for rules that apply to every prompt and every file. Use false with globs for stack-specific or folder-specific guidance.

Does this converter upload my rules?

No. The converter runs in your browser and does not send your pasted rules to Tornic or any third-party service.

Related Tornic tools