modelscope·@huiseo/outline-smart-mcp
暂无描述。
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.
Most Outline MCP servers provide basic API wrappers. This one adds optional Smart Features:
| Feature | What it does |
|---|---|
ask_wiki | Ask questions in natural language, get answers based on your wiki content (RAG) |
find_related | Find semantically similar documents, not just keyword matches |
summarize_document | Generate summaries of long documents |
suggest_tags | Get tag suggestions based on content analysis |
When you might need this:
When basic MCP is sufficient:
Smart features require ENABLE_SMART_FEATURES=true and an OpenAI API key. Without these, the server works as a standard Outline MCP.
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
| Client | Tools | Resources | Prompts |
|---|---|---|---|
| Claude Desktop | |||
| Claude Code | |||
| VS Code GitHub Copilot | |||
| Cursor | - | ||
| Windsurf | - | - | |
| ChatGPT Desktop | - | - |
ol_api_)Add to your Claude Desktop configuration:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.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"
}
}
}
}
</details> <details> <summary>VS Code GitHub Copilot</summary>Note: The
~/.claude/settings.jsonfile is ignored for MCP servers. Use~/.claude.jsonor.mcp.jsoninstead.
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:
npx-y outline-smart-mcp| Variable | Description | Required | Default |
|---|---|---|---|
OUTLINE_URL | Your Outline instance URL | Yes | https://app.getoutline.com |
OUTLINE_API_TOKEN | Your Outline API token | Yes | - |
READ_ONLY | Enable read-only mode | No | false |
DISABLE_DELETE | Disable delete operations | No | false |
MAX_RETRIES | API retry attempts | No | 3 |
RETRY_DELAY_MS | Retry delay (ms) | No | 1000 |
ENABLE_SMART_FEATURES | Enable AI features | No | false |
| `OPENAI_API_… |
暂无描述。
暂无描述。
一种模型上下文协议服务器,它将Wireshark的网络分析能力与Claude等人工智能系统集成在一起,允许在无需手动复制的情况下直接分析网络数据包。
通过SearchAPI.site将AI助手连接到外部数据源(如Google、Bing等),并通过模型上下文协议(MCP)实现对网络信息的安全和上下文访问。
暂无描述。
暂无描述。