A Model Context Protocol (MCP) server enabling AI assistants to interact with Outline (https://www.getoutline.com)
This project implements a Model Context Protocol (MCP) server that allows AI assistants (like Claude) to interact with Outline document services, providing a bridge between natural language interactions and Outline's document management capabilities.
Currently implemented:
- Document Search: Search for documents by keywords
- Collection Management: List collections and view document structure
- Document Reading: Read document content, export as markdown
- Comment Management: View and add comments on documents
- Document Creation: Create new documents in collections
- Document Editing: Update document content and move documents
- Backlink Management: View documents that link to a specific document
- Automatic Rate Limiting: Smart handling of API rate limits with proactive waiting and automatic retry
pip install mcp-outlineRun the MCP server using Docker to avoid installing dependencies on your machine.
- Install and run Docker (or Docker Desktop)
- Pull the pre-built image:
docker pull ghcr.io/vortiago/mcp-outline:latest
- In Cursor, go to the "MCP Servers" tab and click "Add Server"
{ "mcpServers": { "mcp-outline": { "command": "docker", "args": [ "run", "-i", "--rm", "--init", "-e", "DOCKER_CONTAINER=true", "-e", "OUTLINE_API_KEY", "-e", "OUTLINE_API_URL", "ghcr.io/vortiago/mcp-outline:latest" ], "env": { "OUTLINE_API_KEY": "<YOUR_OUTLINE_API_KEY>", "OUTLINE_API_URL": "<YOUR_OUTLINE_API_URL>", "MCP_TRANSPORT": "sse" } } } }
- Install and run Docker (or Docker Desktop)
- Build the Docker image
docker buildx build -t mcp-outline . - In Cursor, go to the "MCP Servers" tab and click "Add Server"
{ "mcpServers": { "mcp-outline": { "command": "docker", "args": [ "run", "-i", "--rm", "--init", "-e", "DOCKER_CONTAINER=true", "-e", "OUTLINE_API_KEY", "-e", "OUTLINE_API_URL", "mcp-outline" ], "env": { "OUTLINE_API_KEY": "<YOUR_OUTLINE_API_KEY>", "OUTLINE_API_URL": "<YOUR_OUTLINE_API_URL>", "MCP_TRANSPORT": "sse" } } } }OUTLINE_API_URL is optional, defaulting to https://app.getoutline.com/api
- Debug the docker image by using MCP inspector and passing the docker image to it:
npx @modelcontextprotocol/inspector docker run -i --rm --init -e DOCKER_CONTAINER=true --env-file .env mcp-outline
- Python 3.10+
- Outline account with API access
- Outline API key (get this from your Outline account settings)
# Clone the repository
git clone https://github.com/Vortiago/mcp-outline.git
cd mcp-outline
# Install in development mode
uv pip install -e ".[dev]"Create a .env file in the project root with the following variables:
# Outline API Configuration
OUTLINE_API_KEY=your_outline_api_key_here
# For cloud-hosted Outline (default)
# OUTLINE_API_URL=https://app.getoutline.com/api
# For self-hosted Outline
# OUTLINE_API_URL=https://your-outline-instance.example.com/api
The server automatically handles Outline API rate limits using a hybrid approach:
- Proactive Prevention: Tracks
RateLimit-RemainingandRateLimit-Resetheaders from API responses and automatically waits when rate limits are exhausted before making new requests - Reactive Retry: If rate limits are still hit (e.g., due to concurrent requests), automatically retries with exponential backoff (1s, 2s, 4s intervals) up to 3 times
- Retry-After Header: Respects the
Retry-Afterheader provided by the Outline API for optimal wait times
No configuration is required - rate limiting is enabled by default and works transparently.
# Development mode with the MCP Inspector
mcp dev src/mcp_outline/server.py
# Or use the provided script
./start_server.sh
# Install in Claude Desktop (if available)
mcp install src/mcp_outline/server.py --name "Document Outline Assistant"The MCP Outline server supports two transport modes:
stdio(default): Standard input/output for direct process communicationsse: HTTP Server-Sent Events for web-based communication
Set the MCP_TRANSPORT environment variable to choose your transport mode:
# For stdio mode (default - backward compatible)
export MCP_TRANSPORT=stdio
mcp-outline
# For HTTP/SSE mode (useful for Docker deployments)
export MCP_TRANSPORT=sse
mcp-outlineFor Docker deployments, use SSE transport to enable HTTP endpoints:
docker run -p 3001:3001 --env-file .env -e MCP_TRANSPORT=sse mcp-outlineOr in docker-compose.yml:
environment:
- MCP_TRANSPORT=sse
- OUTLINE_API_KEY=your_api_key
- OUTLINE_API_URL=https://your-outline-instance.com/apiSSE Endpoint: Connect to http://localhost:3001/sse (not root path)
Environment Variables:
MCP_TRANSPORT:stdio(default) orsseMCP_HOST: Bind address (default:127.0.0.1for local,0.0.0.0in Docker)
When running the MCP Inspector, go to Tools > Click on a tool > it appears on the right side so that you can query it.

For local testing without a paid Outline account, you can run a complete development environment with self-hosted Outline using Docker Compose.
-
Generate security keys:
# Copy the example configuration cp config/outline.env.example config/outline.env # Generate two unique secrets and add them to config/outline.env openssl rand -hex 32 # Use for SECRET_KEY openssl rand -hex 32 # Use for UTILS_SECRET
-
Start all services:
docker compose up -d
-
Access Outline:
- Open http://localhost:32110 in your browser
- Login with
[email protected]/admin
-
Generate API key:
- Go to Settings → API Keys
- Create a new token
- Add to
.envfile:OUTLINE_API_KEY=<your-token>
-
Restart MCP server:
docker compose restart mcp-outline
-
Test MCP server:
npx @modelcontextprotocol/inspector http://localhost:3001/sse
The development environment includes:
- Outline (localhost:3000) - Document management
- MCP Server (localhost:3001) - MCP Outline server
- Dex (localhost:5556) - OIDC authentication
- PostgreSQL - Database
- Redis - Cache
All data persists in Docker volumes. To reset: docker compose down -v
Search for documents containing "project planning"
Show me all available collections
Get the content of document with ID "docId123"
Create a new document titled "Research Report" in collection "colId456" with content "# Introduction\n\nThis is a research report..."
Add a comment to document "docId123" saying "This looks great, but we should add more details to the methodology section."
Move document "docId123" to collection "colId789"
Contributions are welcome! Please feel free to submit a Pull Request.
# Run tests
uv run pytest tests/
# Format code
uv run ruff format .This project is licensed under the MIT License - see the LICENSE file for details.
- Built with MCP Python SDK
- Uses Outline API for document management