outline-mcp
Provides tools to search and read documents from an Outline wiki, including full-text search across documents, reading document content, and listing collections.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@outline-mcpSearch Outline for the quarterly report"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
outline-mcp
MCP server for Outline — gives Claude the ability to search and read documents from your Outline instance.
Tools
Tool | Description |
| Full-text search across all documents. Returns title, excerpt, and URL for each result. |
| Reads the full content of a document in Markdown. Accepts document ID or URL. |
| Lists all available collections in the workspace. |
Related MCP server: Outline MCP Server
Requirements
Docker and Docker Compose
An Outline API token (see below)
Setup
1. Get your API token
In Outline: Settings → API Tokens → Create token
2. Clone and configure
git clone https://github.com/ngarbezza/outline-mcp.git
cd outline-mcp
cp .env.example .envEdit .env:
OUTLINE_URL=https://your-outline-instance.com
OUTLINE_API_TOKEN=your_token_here3. Start the server
docker compose up -dVerify it's running:
curl http://localhost:8000/health
# {"status": "ok", "server": "outline-mcp"}Connecting to Claude
Claude Code
claude mcp add outline --transport sse http://localhost:8000/sseClaude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"outline": {
"url": "http://localhost:8000/sse"
}
}
}Restart Claude Desktop after saving.
Claude.ai (web)
Claude.ai requires a publicly accessible URL. Use a tunnel to expose your local server:
# Option A: cloudflared (recommended, free)
cloudflared tunnel --url http://localhost:8000
# Option B: ngrok
ngrok http 8000Then go to Claude.ai → Settings → Integrations → Add MCP and enter the tunnel URL.
Note: The tunnel URL changes every time you restart it. For a stable setup, configure a named cloudflared tunnel or use ngrok with a reserved domain.
Usage examples
Once connected, you can ask Claude things like:
"Search Outline for our onboarding process"
"What does the API design guidelines document say?"
"List all collections in Outline"
"Read the document at https://outline.yourcompany.com/doc/..."
Troubleshooting
curl /health returns connection refused
The container isn't running. Check with docker compose ps and inspect logs with docker compose logs.
Claude says the tool is unavailable
Claude Desktop: make sure you restarted the app after editing the config file.
Claude Code: run
claude mcp listto verify the server is registered.All clients: confirm the server is running with
curl http://localhost:8000/health.
401 Unauthorized errors from Outline
Your API token is invalid or expired. Generate a new one in Outline under Settings → API Tokens.
403 Forbidden on specific documents
The token belongs to a user that doesn't have access to that collection. Check permissions in Outline.
Search returns no results Outline's search indexes documents asynchronously. Newly created documents may take a few minutes to appear. Also verify your token has read access to the collections you're searching.
Tunnel URL keeps changing (Claude.ai)
Use a named cloudflared tunnel with a fixed subdomain, or run the MCP server on a VPS and point Claude.ai directly to it.
Development
To run the server locally without Docker:
pip install -r requirements.txt
export OUTLINE_URL=https://your-outline-instance.com
export OUTLINE_API_TOKEN=your_token_here
python src/server.pyLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ngarbezza/outline-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server