markdown-search
Search, navigate, and extract content from local markdown files via MCP. Use when working with documentation or knowledge bases.
Works with
--- name: markdown-search description: Search, navigate, and extract content from local markdown files via MCP. Use when working with documentation or knowledge bases. license: MIT --- # Markdown Search via MCP Use this skill when you need to search documentation, extract sections, list headings, or find code blocks across local markdown files. ## Available Tools | Tool | What it does | |------|-------------| | `list_files` | List all .md files in a directory recursively | | `search_docs` | Full-text search across all .md files (case-insensitive, up to 50 results) | | `get_section` | Extract a section by heading until the next heading of same/higher level | | `list_headings` | List all headings as a table of contents | | `find_code_blocks` | Find fenced code blocks, optionally filter by language | | `get_frontmatter` | Parse YAML frontmatter metadata from a file | ## Workflow 1. `list_files` to discover documentation files in the project 2. `search_docs` for full-text search across all docs 3. `list_headings` to get the table of contents for a specific file 4. `get_section` to extract a specific section by its heading text 5. `find_code_blocks` to find code examples, optionally filtered by language ## Key Patterns - `get_section` extracts everything under a heading until the next heading of same or higher level - `find_code_blocks` with `language: "typescript"` filters to only TS examples - `search_docs` is case-insensitive and returns up to 50 matches with surrounding context - Unlike the filesystem MCP, this server understands markdown structure (headings, sections, code fences)
More Writing & Documentation skills
paper-context-resolver
lllllllama/rigorpilot-skills
Rigor Paper Context helper for README-first deep learning repo reproduction. Use only when the README and repository files leave a narrow reproduction-critical gap and the task is to resolve a specific paper detail such as dataset split, preprocessing, evaluation protocol, checkpoint mapping, or runtime assumption from primary paper sources while recording conflicts. Do not use for general paper summary, repo scanning, environment setup, command execution, title-only paper lookup, or replacing README guidance by default.
repo-intake-and-plan
lllllllama/rigorpilot-skills
Rigor Intake helper for README-first deep learning repo reproduction. Use when the task is specifically to scan a repository, read the README and common project files, extract documented commands, classify inference, evaluation, and training candidates, and return the smallest trustworthy reproduction plan to the main orchestrator. Do not use for environment setup, asset download, command execution, final reporting, paper lookup, or end-to-end orchestration.
minimal-run-and-audit
lllllllama/rigorpilot-skills
Rigor Run skill for README-first deep learning repo reproduction. Use when the task is specifically to capture or normalize evidence from the selected smoke test or documented inference or evaluation command and write standardized `repro_outputs/` files, including patch notes when repository files changed. Do not use for training execution, initial repo intake, generic environment setup, paper lookup, target selection, hidden scientific-meaning changes, or end-to-end orchestration by itself.

