outline

outline is a skill for Claude Code from Vortiago/mcp-outline. It costs 64 tokens per session (756 once invoked), scanned A, original, MIT.

A set of working rules for Outline, a collaborative knowledge-base application, through its MCP tools. It covers documents, collections, Markdown, diagrams, search, editing, and document lifecycle states.

In plain words
What is it for?
Use it to create, edit, search, reorganize, publish, archive, restore, or diagram Outline documents and collections.
Why use it?
It helps agents make safe, predictable changes to Outline content while respecting its document structure and formatting rules. It also reduces mistakes when finding, restructuring, archiving, or deleting documents.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the mcp-outline plugin — 1 skill, 1 agent, 2 hooks, 1 MCP server shipped together

Good fit Use it to create, edit, search, reorganize, publish, archive, restore, or diagram Outline documents and collections.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vortiago/mcp-outline/outline
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.

Any agent
npx skills add Vortiago/mcp-outline --skill outline
Clone the repo
git clone --depth 1 https://github.com/Vortiago/mcp-outline

Made for: Claude Code.

Or install mcp-outline, the plugin that ships this one along with the rest of its 1 skill, 1 agent, 2 hooks, 1 MCP server.

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 outline

README.md
[![agentmods](https://agentmods.dev/badge/skills/vortiago/mcp-outline/outline/github.svg)](https://agentmods.dev/skills/vortiago/mcp-outline/outline)
Your own site
<a href="https://agentmods.dev/skills/vortiago/mcp-outline/outline"><img src="https://agentmods.dev/badge/skills/vortiago/mcp-outline/outline/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 outline

Your own site · 80×15
<a href="https://agentmods.dev/skills/vortiago/mcp-outline/outline"><img src="https://agentmods.dev/badge/skills/vortiago/mcp-outline/outline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 756 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00064 $0.00756
Opus 5 $0.00032 $0.00378
Sonnet 5 $0.00013 $0.00151
Haiku 4.5 $0.00006 $0.00076

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

Security

Grade A, and why

outline 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 9d 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.

skills/outline/SKILL.md · 86 lines

How it starts

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

Working with Outline

Markdown

  • Mermaid diagrams need ```mermaidjs fences, NOT ```mermaid — the wrong fence silently renders as a plain code block.
  • Otherwise standard markdown. Use ATX headings (#######); they power the TOC and section tools.

Structure

  • Collections contain documents; documents nest via parent_document_id. Browse: list_collections, get_collection_structure.
  • Lifecycle: draft → published → archived → trash (30-day recovery via restore_document; delete_document(permanent=True) is unrecoverable).
  • create_document(template=True) / update_document(template=True) adds to the "New from template" picker.
  • Titles are not unique; resolve to IDs with get_document_id_from_title or search_documents. Check get_document_backlinks before restructuring or deleting.

Search defaults to published only

Drafts and archived docs are invisible to search_documents and list_recently_updated_documents unless widened: status_filter=["draft", "published", "archived"].

Reading large documents

  1. get_document_toc — headings with 0-based line numbers.
  2. read_document_section(heading=...) — case-insensitive substring; accepts headings as the TOC prints them (e.g. "## Background").
  3. search_document_content(query=...) — grep within the document: matching lines with line numbers and context. Use it to locate text for edit_document old_strings or read_document offsets.
  4. read_document(offset=N, limit=M) — TOC/grep line numbers are valid offsets.

Full read_document only for small documents.

Editing

  • Default to edit_document: each old_string must match exactly once (add surrounding context to disambiguate); edits apply sequentially, all-or-nothing. Batch all edits for one document into a single call.
  • update_document only for full replacement, title changes, or append=True (sends just the chunk).

Staged rewrites

edit_document(id, edits=[...], save=False)   # stage, repeat as needed
edit_document(id, edits=[...], save=True)    # final batch + push all
edit_document(id, edits=[], save=True)       # or: flush only

Read the full file on GitHub · 86 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. 9d ago First seen · 86 lines · 64 tokens per session scan A e8ff2c60e349

Subscribe to this mod's changes

outline is a skill published in the GitHub repository Vortiago/mcp-outline (155 stars, last pushed 1mo ago), licensed MIT. It adds 64 tokens to every session and 756 once invoked, about $0.0003 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-08-30.

Related

Other skills, from other repositories

ocr-expert

You are connected to OCR-MCP, a FastMCP 3.4+ server with 14 OCR backends. This skill teaches you how to use it effectively.

sandraschi/ocr-mcp · 0 tokens

onenote

OneNote MCP connects an AI assistant to Microsoft OneNote through the Microsoft Graph API: browsing notebooks/sections/pages, reading full page content (HTML), creating pages, and full-text search across the user's notes. 13 tools, dual transport (stdio + HTTP streamable on 10907).

sandraschi/onenote-mcp · 0 tokens

n8n-binary-and-data

Handle files and binary data in n8n correctly. Use when working with files, images, PDFs, attachments, uploads or downloads, base64, vision/multimodal input, or when an AI agent needs a file as tool input or output — and whenever the user mentions $binary, binaryPropertyName, "read the PDF", "attach the file", "send…

czlonkowski/n8n-mcp · 135 tokens

deck-ljg-present

A presentation template that converts an outline or Markdown document into large, poster-like slides while keeping the original wording, order, and content. It uses black, red, or yellow colour themes and assigns document elements to slide layouts.

nexu-io/html-anything · 39 tokens

excel-mcp

Excel MCP Server skill for Windows workbook automation. Use when an assistant needs rich MCP tools to create, inspect, modify, format, or analyze Excel files. Supports Power Query (M), Data Model/DAX, PivotTables, Tables, Ranges, Charts, Slicers, formatting, screenshots, VBA macros, connections, and calculation mode.…

sbroenne/mcp-server-excel · 106 tokens

markdown-to-pdf

Convert a markdown file to PDF using mistune + reportlab. Use when the user wants to convert a .md file to PDF, or when another skill needs to produce a PDF from markdown output.

staskh/trading_skills · 45 tokens