PolarHub
  • Agents
  • MCP Servers
  • Skills
  • PolarBear
PolarHub © 2026
MCP Serversrag-systemsoutline-smart-mcp
返回「rag-systems」

outline-smart-mcp

modelscope·@huiseo/outline-smart-mcp

rag-systems0下载LocalModelScope

简介

暂无描述。

MCP Server 详情

来自 ModelScope 索引

Outline Wiki MCP Server

npm version License: MIT

English | | 日本語 | 中文

A Model Context Protocol (MCP) server that enables LLMs to interact with Outline wiki through structured API calls. This server provides document management, search, collections, comments, and AI-powered smart features including RAG-based Q&A.

Why This Server?

Most Outline MCP servers provide basic API wrappers. This one adds optional Smart Features:

FeatureWhat it does
ask_wikiAsk questions in natural language, get answers based on your wiki content (RAG)
find_relatedFind semantically similar documents, not just keyword matches
summarize_documentGenerate summaries of long documents
suggest_tagsGet tag suggestions based on content analysis

When you might need this:

  • Your team's wiki has grown large and search isn't enough
  • You want to query your documentation conversationally
  • You need semantic search across your knowledge base

When basic MCP is sufficient:

  • You only need CRUD operations on documents
  • You don't want to set up OpenAI API
  • Your wiki is small and well-organized

Smart features require ENABLE_SMART_FEATURES=true and an OpenAI API key. Without these, the server works as a standard Outline MCP.

Example Usage

User: "What's our policy on remote work?"
 ask_wiki searches your wiki and returns an answer with source links

User: "Find documents related to the onboarding guide"
 find_related returns semantically similar docs (not just keyword matches)

User: "Summarize the Q4 planning document"
 summarize_document generates a concise summary in your preferred language

Supported Clients

ClientToolsResourcesPrompts
Claude Desktop
Claude Code
VS Code GitHub Copilot
Cursor-
Windsurf--
ChatGPT Desktop--

Getting Started

Requirements

  • Node.js 18.0.0 or higher
  • Outline instance with API access
  • (Optional) OpenAI API key for smart features

Getting Your Outline API Token

  1. Log in to your Outline instance
  2. Go to Settings API
  3. Click Create API Key
  4. Copy the generated token (starts with ol_api_)

Installation

<details> <summary>Claude Desktop</summary>

Add to your Claude Desktop configuration:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "outline": {
      "command": "npx",
      "args": ["-y", "outline-smart-mcp"],
      "env": {
        "OUTLINE_URL": "https://your-outline-instance.com",
        "OUTLINE_API_TOKEN": "ol_api_xxxxxxxxxxxxx"
      }
    }
  }
}
</details> <details> <summary>Claude Code</summary>

Run the following command:

claude mcp add outline -e OUTLINE_URL=https://your-outline-instance.com -e OUTLINE_API_TOKEN=ol_api_xxxxxxxxxxxxx -- npx -y outline-smart-mcp

Or add to ~/.claude.json (global) or .mcp.json (project-local):

{
  "mcpServers": {
    "outline": {
      "command": "npx",
      "args": ["-y", "outline-smart-mcp"],
      "env": {
        "OUTLINE_URL": "https://your-outline-instance.com",
        "OUTLINE_API_TOKEN": "ol_api_xxxxxxxxxxxxx"
      }
    }
  }
}

Note: The ~/.claude/settings.json file is ignored for MCP servers. Use ~/.claude.json or .mcp.json instead.

</details> <details> <summary>VS Code GitHub Copilot</summary>

Add to your VS Code settings (.vscode/mcp.json):

{
  "servers": {
    "outline": {
      "command": "npx",
      "args": ["-y", "outline-smart-mcp"],
      "env": {
        "OUTLINE_URL": "https://your-outline-instance.com",
        "OUTLINE_API_TOKEN": "ol_api_xxxxxxxxxxxxx"
      }
    }
  }
}
</details> <details> <summary>Cursor</summary>

Add to Cursor MCP settings (~/.cursor/mcp.json):

{
  "mcpServers": {
    "outline": {
      "command": "npx",
      "args": ["-y", "outline-smart-mcp"],
      "env": {
        "OUTLINE_URL": "https://your-outline-instance.com",
        "OUTLINE_API_TOKEN": "ol_api_xxxxxxxxxxxxx"
      }
    }
  }
}
</details> <details> <summary>Windsurf</summary>

Add to Windsurf MCP settings (~/.codeium/windsurf/mcp_config.json):

{
  "mcpServers": {
    "outline": {
      "command": "npx",
      "args": ["-y", "outline-smart-mcp"],
      "env": {
        "OUTLINE_URL": "https://your-outline-instance.com",
        "OUTLINE_API_TOKEN": "ol_api_xxxxxxxxxxxxx"
      }
    }
  }
}
</details> <details> <summary>ChatGPT Desktop</summary>

ChatGPT supports MCP through its desktop app. Add the server in Settings MCP Servers with:

  • Command: npx
  • Arguments: -y outline-smart-mcp
  • Environment variables as shown above
</details>

Configuration

Environment Variables

VariableDescriptionRequiredDefault
OUTLINE_URLYour Outline instance URLYeshttps://app.getoutline.com
OUTLINE_API_TOKENYour Outline API tokenYes-
READ_ONLYEnable read-only modeNofalse
DISABLE_DELETEDisable delete operationsNofalse
MAX_RETRIESAPI retry attemptsNo3
RETRY_DELAY_MSRetry delay (ms)No1000
ENABLE_SMART_FEATURESEnable AI featuresNofalse
`OPENAI_API_…

相关 MCP Servers(来自「rag-systems」)

context7

暂无描述。

@2511319/context7

BochaAI

暂无描述。

@BochaAI/bocha-search-mcp

Wireshark-MCP服务器

一种模型上下文协议服务器,它将Wireshark的网络分析能力与Claude等人工智能系统集成在一起,允许在无需手动复制的情况下直接分析网络数据包。

@sarthaksiddha/Wireshark-mcp

SearchAPI MCP服务器

通过SearchAPI.site将AI助手连接到外部数据源(如Google、Bing等),并通过模型上下文协议(MCP)实现对网络信息的安全和上下文访问。

@mrgoonie/searchapi-mcp-server

Sugatraj

暂无描述。

@Sugatraj/Cursor-Browser-Tools-MCP

ThreatFlux

暂无描述。

@ThreatFlux/playwright-fetch

自动安装

点击按钮会唤起 PolarBear 客户端,并把当前 MCP Server 的 Markdown 详情文档地址传给客户端。

/api/mcps/huiseo-outline-smart-mcp/markdown
打开 PolarBear 安装查看 Markdown 文档

手动安装

在 PolarBear 或其他支持 MCP 的客户端中,新建 MCP Server,并参考下方来源或安装提示配置。

User: "What's our policy on remote work?" ask_wiki searches your wiki and returns an answer with source links User: "Find documents related to the onboarding guide" find_related returns semantically similar docs (not just keyword matches) User: "Summarize the Q4 planning document" summarize_document generates a concise summary in your preferred language ``` ## Supported Clients | Client | Tools | Resources | Prompts | |--------|:-----:|:---------:|:-------:| | [Claude Desktop](https://claude.ai/download) | | | | | [Claude Code](https://docs.anthropic.com/en/docs/claude-code) | | | | | [VS Code GitHub Copilot](https://code.visualstudio.com/) | | | | | [Cursor](https://cursor.sh/) | | - | | | [Windsurf](https://codeium.com/windsurf) | | - | - | | [ChatGPT Desktop](https://chatgpt.com/) | | - | - | ## Getting Started ### Requirements - Node.js 18.0.0 or higher - Outline instance with API access - (Optional) OpenAI API key for smart features ### Getting Your Outline API Token 1. Log in to your Outline instance 2. Go to **Settings** **API** 3. Click **Create API Key** 4. Copy the generated token (starts with `ol_api_`) ### Installation <details> <summary>Claude Desktop</summary> Add to your Claude Desktop configuration: - macOS: `~/Library/Application Support/Claude/claude_desktop_config.json` - Windows: `%APPDATA%\Claude\claude_desktop_config.json` - Linux: `~/.config/Claude/claude_desktop_config.json` ```json { "mcpServers": { "outline": { "command": "npx", "args": ["-y", "outline-smart-mcp"], "env": { "OUTLINE_URL": "https://your-outline-instance.com", "OUTLINE_API_TOKEN": "…

基本信息

分类
rag-systems / documentation-access / note-taking
运行方式
No
许可证
Unknown
详情文件
huiseo-outline-smart-mcp.md