Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

outline-app-mcpoutline 应用 MCP

Agent Skill

outline-app-mcp 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,679

周安装

232

GitHub Stars

公开资料未说明

下载量

1,837
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:outline-app-mcp(outline 应用 MCP)
来源仓库:https://github.com/samuellie/outline-app-mcp
安装命令:
openclaw skills install outline-app-mcp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install outline-app-mcp

简介

作为 Outline 应用的 MCP 桥接器,使 AI Agent 能管理文档与评论。

  • 支持搜索、创建与更新知识库内容,实现团队协作知识沉淀。
  • 需配置 Outline 实例 URL 与 API 密钥方可正常使用。
  • 操作权限应与实际角色匹配,避免越权修改敏感文档。
  • 建议定期备份知识库以防数据丢失或服务中断。outline-app-mcp 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
outline-app-mcp
description
Model Context Protocol (MCP) bridge for Outline (getoutline.com). Enables AI agents to search, read, create, and manage documents, collections, and comments in an Outline workspace via SSE transport. Includes local filesystem access for bulk file/media uploads to Outline.
metadata
version
1.3.4
platform
Outline
author
Tinker
transport
Streamable HTTP (SSE)
mcp_version
1.0.0
openclaw
primaryEnv
OUTLINE_API_KEY
requires
env
bins
install
kind
exec
command
npm install
label
Installing Node.js dependencies (@modelcontextprotocol/sdk)

Outline MCP Skill

This skill provides a high-fidelity bridge between OpenClaw and an Outline workspace. It utilizes the Model Context Protocol (MCP) v1.0.0 to dynamically expose Outline's internal documentation tools to AI agents.

⚠️ Security & Permissions Warning

Host Filesystem Access: The upload (in mcp_bridge.mjs) and bulk-sync (in bulk_sync.mjs) tools require access to the local host filesystem. These scripts use fs.readFileSync to read files from arbitrary absolute paths provided by the agent and upload them to the configured Outline workspace.

  • Risk: If an agent is compromised or misconfigured, it could potentially exfiltrate sensitive local files by providing their absolute paths to these tools.
  • Scope: Access is limited to the permissions of the user running the OpenClaw process.
  • Recommendation: Only enable this skill in trusted environments and monitor agent logs for unexpected file access patterns.

📋 Prerequisites

Before setting up the skill in OpenClaw, ensure you have completed the following steps in your Outline instance:

  1. Enable AI Features: Ensure AI features are enabled for your workspace under Settings -> AI.
  2. Enable MCP: In the same AI settings tab, toggle the MCP switch to "On". This enables the Model Context Protocol endpoint for your workspace.
  3. Generate API Key: Click Generate API Key (also in the AI tab). Copy this key immediately as it will only be shown once.
  4. Locate your MCP URL: Your MCP endpoint is typically your workspace URL with /mcp appended (e.g., https://docs.yourcompany.com/mcp).
  5. Node.js Environment: Ensure Node.js (v18+) is installed on your OpenClaw host.

🛠️ Setup & Configuration

To use this skill, you must provide your Outline workspace details via environment variables.

Configuration Commands

openclaw config set skills.entries.outline-app-mcp.env.OUTLINE_API_KEY "your_ol_api_key"
openclaw config set skills.entries.outline-app-mcp.env.OUTLINE_URL "https://your-workspace.getoutline.com/mcp"

🧰 API Reference & Detailed Tool Parameters

The following tools are available via the scripts/mcp_bridge.mjs executor. All arguments are passed as a JSON object.

1. Document Management

list_documents

Searches documents or lists recent ones.

  • query (string, optional): Full-text search query.
  • collectionId (string, optional): Filter by collection.
  • offset (integer, optional): Pagination offset.
  • limit (integer, optional): Max results (default 25, max 100).

read_document

Retrieves the full Markdown content.

  • id (string, required): Unique identifier of the document.

create_document

Creates a new document.

  • title (string, required): Document title.
  • text (string, optional): Markdown content.
  • collectionId (string, required if no parentDocumentId): Target collection.
  • parentDocumentId (string, optional): Nest under this document.
  • icon (string, optional): Emoji icon.
  • color (string, optional): Hex color (e.g., #FF0000).
  • publish (boolean, optional): Default true. Set false for draft.

update_document

Edits an existing document.

  • id (string, required): Document ID.
  • title (string, optional): New title.
  • text (string, optional): New markdown content.
  • editMode (enum: replace, append, prepend, optional): Default replace.
  • collectionId (string, optional): Required when publishing a draft with no collection.
  • icon (string/null, optional): Update or remove emoji.
  • color (string/null, optional): Update or remove hex color.
  • publish (boolean, optional): Publish draft or revert to draft.

move_document

Relocates a document.

  • id (string, required): Document ID.
  • collectionId (string, optional): Target collection.
  • parentDocumentId (string, optional): Target parent document.
  • index (integer, optional): Zero-based position among siblings.

2. Collection Management

list_collections

Lists available collections.

  • query (string, optional): Filter by name.
  • offset (integer, optional): Pagination offset.
  • limit (integer, optional): Max results (max 100).

create_collection

Creates a new collection.

  • name (string, required): Collection name.
  • description (string, optional): Markdown description.
  • icon (string, optional): Emoji icon.
  • color (string, optional): Hex color.

update_collection

Updates collection metadata.

  • id (string, required): Collection ID.
  • name (string, optional): New name.
  • description (string, optional): New description.
  • icon (string/null, optional): Update or remove icon.
  • color (string/null, optional): Update or remove color.

3. Commenting & Collaboration

list_comments

Lists comments (requires documentId or collectionId).

  • documentId (string, optional): Filter by document.
  • collectionId (string, optional): Filter by collection.
  • parentCommentId (string, optional): List only replies to this comment.
  • statusFilter (array of resolved/unresolved, optional): Filter by status.
  • offset (integer, optional): Pagination offset.
  • limit (integer, optional): Max results.

create_comment

Adds a comment to a document.

  • documentId (string, required): Document to comment on.
  • text (string, required): Markdown content.
  • parentCommentId (string, optional): Nest as a reply.

update_comment

Updates or resolves a comment.

  • id (string, required): Comment ID.
  • text (string, optional): New markdown text.
  • status (enum: resolved, unresolved, optional): Resolve thread.

delete_comment

Deletes a comment.

  • id (string, required): Comment ID.

4. User Directory

list_users

Lists workspace members.

  • query (string, optional): Search by name or email.
  • role (enum: admin, member, viewer, guest, optional): Filter by role.
  • filter (enum: active, suspended, invited, all, optional): Filter by status.
  • offset (integer, optional): Pagination offset.
  • limit (integer, optional): Max results.

🚀 Usage Examples (Common Actions)

1. Search for project documentation

OUTLINE_API_KEY="..." OUTLINE_URL="..." node skills/outline-app-mcp/scripts/mcp_bridge.mjs call "list_documents" '{"query": "Project Roadmap"}'

2. Create a new status update

OUTLINE_API_KEY="..." OUTLINE_URL="..." node skills/outline-app-mcp/scripts/mcp_bridge.mjs call "create_document" '{
  "title": "Weekly Sync - April 1",
  "collectionId": "col_uuid_here",
  "text": "# Update\
Everything is on track."
}'

3. Append a new row to a table (Token Efficient)

OUTLINE_API_KEY="..." OUTLINE_URL="..." node skills/outline-app-mcp/scripts/mcp_bridge.mjs call "update_document" '{
  "id": "doc_uuid_here",
  "text": "\
| New Entry | Ready | [Link](url) |",
  "editMode": "append"
}'

4. Bulk Upload Images & Update Document (Power-Tool)

Use the bulk_sync.mjs script for unified Turnaround (Upload + Update).

OUTLINE_API_KEY="..." OUTLINE_URL="..." node skills/outline-app-mcp/scripts/bulk_sync.mjs "bulk-sync" "target_doc_id" "/path/1.png,/path/2.png" "## 🎨 New Media Assets\
{{MEDIA}}\
---\
*Synced via AI Agent*" "append"
  • Inputs:

1. Document ID 2. Comma-separated absolute file paths. 3. Template Text: Use {{MEDIA}} as a placeholder for uploaded images. 4. Edit Mode: replace, append, or prepend.

5. Add a Review Comment to a Document

OUTLINE_API_KEY="..." OUTLINE_URL="..." node skills/outline-app-mcp/scripts/mcp_bridge.mjs call "create_comment" '{
  "documentId": "doc_uuid_here",
  "text": "Draft is ready for review."
}'

6. Relocate a document to a new Collection

OUTLINE_API_KEY="..." OUTLINE_URL="..." node skills/outline-app-mcp/scripts/mcp_bridge.mjs call "move_document" '{
  "id": "doc_uuid_here",
  "collectionId": "new_collection_uuid"
}'

💡 Best Practices

🚀 Token Efficiency & Cost Optimization (Mandatory)

To minimize token consumption and improve responsiveness, always prefer append or prepend modes when adding new information to existing documents.

  • Avoid Full Rewrites: Do NOT use replace mode (default) if you only need to add a new row or section.
  • Bulk Sync for Media: Always use bulk_sync.mjs for uploading multiple images to avoid redundant Turnarounds.

📜 Technical Requirements

  • Runtime: Node.js v18+
  • Protocol: MCP v1.0.0 (over SSE)
  • Dependency: @modelcontextprotocol/sdk (local)
  • Authentication: Bearer Token via OUTLINE_API_KEY
  • Transport: StreamableHTTPClientTransport (POST-based SSE)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

93.88%
按下载量换算1,725

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills