mcp-outline
by Vortiago·★ 147·综合分 50
MCP 服务器,连接 AI 助手与 Outline 文档平台,提供全面的文档和集合管理功能。
概述
该 MCP 服务器为 Outline 文档系统提供了全面的访问能力,使 AI 助手能够执行搜索、读取、创建、编辑和归档文档等操作。它支持集合管理、线程评论、反向链接追踪,并通过 URI 方案提供 MCP 资源用于直接内容访问。服务器实现了透明的速率限制,并支持多种访问控制配置,包括只读模式和细粒度权限设置。
试试问 AI
装完之后,这里有 6 个你可以让 AI 做的事:
什么时候选它
如果你已经在使用 Outline 进行文档管理,并希望通过 MCP 让 AI 助手与你的文档交互,选择这个服务器。
什么时候不要选它
如果你不使用 Outline 或需要为其他平台提供文档管理功能,不要选择这个服务器。
此 server 暴露的工具
从 README 抽取出 12 个工具search_documentssearch_documents(query, collection_id?, limit?, offset?)Search documents by keywords with pagination
list_collectionslist_collections()List all collections
read_documentread_document(document_id)Get document content
create_documentcreate_document(title, collection_id, text?, parent_document_id?, publish?)Create new document
update_documentupdate_document(document_id, title?, text?, append?)Update document with optional append mode
archive_documentarchive_document(document_id)Archive document for later restoration
add_commentadd_comment(document_id, text, parent_comment_id?)Add comment to document with optional threaded reply
list_document_commentslist_document_comments(document_id, include_anchor_text?, limit?, offset?)View document comments with pagination
create_collectioncreate_collection(name, description?, color?)Create new collection for document organization
get_document_backlinksget_document_backlinks(document_id)Find documents that link to this document
batch_create_documentsbatch_create_documents(documents)Create multiple documents at once
ask_ai_about_documentsask_ai_about_documents(question, collection_id?, document_id?)Ask natural language questions about your documents
可对比工具
安装
安装
快速安装
- VS Code: [](https://vscode.dev/redirect/mcp/install?name=mcp-outline&inputs=%5B%7B%22id%22%3A%22outline_api_key%22%2C%22type%22%3A%22promptString%22%2C%22description%22%3A%22Enter%20OUTLINE_API_KEY%22%2C%22password%22%3Atrue%7D%2C%7B%22id%22%3A%22outline_api_url%22%2C%22type%22%3A%22promptString%22%2C%22description%22%3A%22Outline%20API%20URL%20(optional%2C%20for%20self-hosted)%22%2C%22password%22%3Afalse%7D%5D&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22mcp-outline%22%5D%2C%22env%22%3A%7B%22OUTLINE_API_KEY%22%3A%22%24%7Binput%3Aoutline_api_key%7D%22%2C%22OUTLINE_API_URL%22%3A%22%24%7Binput%3Aoutline_api_url%7D%22%7D%7D)
- Cursor: [](https://cursor.com/en/install-mcp?name=mcp-outline&config=eyJjb21tYW5kIjoidXZ4IiwiYXJncyI6WyJtY3Atb3V0bGluZSJdLCJlbnYiOnsiT1VUTElORV9BUElfS0VZIjoiJHtpbnB1dDpvdXRsaW5lX2FwaV9rZXl9IiwiT1VUTElORV9BUElfVVJMIjoiJHtpbnB1dDpvdXRsaW5lX2FwaV91cmx9In0sImlucHV0cyI6W3siaWQiOiJvdXRsaW5lX2FwaV9rZXkiLCJ0eXBlIjoicHJvbXB0U3RyaW5nIiwiZGVzY3JpcHRpb24iOiJFbnRlciBPVVRMSU5FX0FQSV9LRVkiLCJwYXNzd29yZCI6dHJ1ZX0seyJpZCI6Im91dGxpbmVfYXBpX3VybCIsInR5cGUiOiJwcm9tcHRTdHJpbmciLCJkZXNjcmlwdGlvbiI6Ik91dGxpbmUgQVBJIFVSTCAob3B0aW9uYWwsIGZvciBzZWxmLWhvc3RlZCkiLCJwYXNzd29yZCI6ZmFsc2V9XX0=)
手动安装
uvx mcp-outline # 使用 uv
pip install mcp-outline # 使用 pipClaude Desktop 配置
添加到 ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"mcp-outline": {
"command": "uvx",
"args": ["mcp-outline"],
"env": {
"OUTLINE_API_KEY": "<您的 API 密钥>",
"OUTLINE_API_URL": "<您的 Outline URL>"
}
}
}
}FAQ
- 此 MCP 服务器需要什么访问权限?
- 服务器需要来自 Outline 的 API 密钥,具有您想要执行的操作的适当权限(读取、写入、删除)。您可以在 Outline 的设置 → API 密钥部分创建 API 密钥。
- 可以与自托管 Outline 实例一起使用吗?
- 可以,只需将 OUTLINE_API_URL 环境变量设置为您的自托管实例的 API 端点(例如,https://your-domain.com/api),而不是默认的云服务。
- 是否提供只读模式?
- 是的,设置 OUTLINE_READ_ONLY=true 可禁用所有写入操作,仅保留搜索、读取和导出工具。
mcp-outline 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。