A Model Context Protocol (MCP) server for Outline (https://www.getoutline.com)
Project description
MCP Outline Server
A Model Context Protocol (MCP) server enabling AI assistants to interact with Outline (https://www.getoutline.com)
Overview
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.
Features
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
Installation
Option 1: Install from PyPI
pip install mcp-outline
Option 2: Docker
Run the MCP server using Docker to avoid installing dependencies on your machine.
Option 2a: Use Pre-built Image
- 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" } } } }
Option 2b: Build from Source
- 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
Development
Prerequisites
- Python 3.10+
- Outline account with API access
- Outline API key (get this from your Outline account settings)
Installation
# Clone the repository
git clone https://github.com/Vortiago/mcp-outline.git
cd mcp-outline
# Install in development mode
uv pip install -e ".[dev]"
Configuration
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
Rate Limiting
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.
Running the Server
# 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"
Transport Mode Configuration
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
Configuring Transport Mode
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-outline
Docker HTTP Transport
For Docker deployments, use SSE transport to enable HTTP endpoints:
docker run -p 3001:3001 --env-file .env -e MCP_TRANSPORT=sse mcp-outline
Or in docker-compose.yml:
environment:
- MCP_TRANSPORT=sse
- OUTLINE_API_KEY=your_api_key
- OUTLINE_API_URL=https://your-outline-instance.com/api
SSE 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.
Local Development with Self-Hosted Outline
For local testing without a paid Outline account, you can run a complete development environment with self-hosted Outline using Docker Compose.
Quick Start
-
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
admin@example.com/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
Usage Examples
Search for Documents
Search for documents containing "project planning"
List Collections
Show me all available collections
Read a Document
Get the content of document with ID "docId123"
Create a New Document
Create a new document titled "Research Report" in collection "colId456" with content "# Introduction\n\nThis is a research report..."
Add a Comment
Add a comment to document "docId123" saying "This looks great, but we should add more details to the methodology section."
Move a Document
Move document "docId123" to collection "colId789"
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Development
# Run tests
uv run pytest tests/
# Format code
uv run ruff format .
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
- Built with MCP Python SDK
- Uses Outline API for document management
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_outline-0.4.1.tar.gz.
File metadata
- Download URL: mcp_outline-0.4.1.tar.gz
- Upload date:
- Size: 764.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec1bd926e8dba9ea6575030115e98bf42731a0826b5593f1bd70fcf03b68d447
|
|
| MD5 |
e93d351d97a6edc6b3f9dc103fb4c37e
|
|
| BLAKE2b-256 |
52d06b7f4edcef4eaf0da3d14a409e5954d46930ba77323c726040ff8eded492
|
Provenance
The following attestation bundles were made for mcp_outline-0.4.1.tar.gz:
Publisher:
publish-pypi.yml on Vortiago/mcp-outline
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_outline-0.4.1.tar.gz -
Subject digest:
ec1bd926e8dba9ea6575030115e98bf42731a0826b5593f1bd70fcf03b68d447 - Sigstore transparency entry: 695961031
- Sigstore integration time:
-
Permalink:
Vortiago/mcp-outline@b9b7ecabe9d98ba245f8a20e8081fd5434e5e619 -
Branch / Tag:
refs/tags/v0.4.1 - Owner: https://github.com/Vortiago
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@b9b7ecabe9d98ba245f8a20e8081fd5434e5e619 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mcp_outline-0.4.1-py3-none-any.whl.
File metadata
- Download URL: mcp_outline-0.4.1-py3-none-any.whl
- Upload date:
- Size: 30.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
107d77f68a651a324cd93ea2be3312949dc3cb60e060696de6be96d19ccfd803
|
|
| MD5 |
af0ae1ef28ac745fa02e7011969803c4
|
|
| BLAKE2b-256 |
1f4b25e06fa0f0726f7c66d206e05d273b34106968be95e4b143508382200a24
|
Provenance
The following attestation bundles were made for mcp_outline-0.4.1-py3-none-any.whl:
Publisher:
publish-pypi.yml on Vortiago/mcp-outline
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_outline-0.4.1-py3-none-any.whl -
Subject digest:
107d77f68a651a324cd93ea2be3312949dc3cb60e060696de6be96d19ccfd803 - Sigstore transparency entry: 695961035
- Sigstore integration time:
-
Permalink:
Vortiago/mcp-outline@b9b7ecabe9d98ba245f8a20e8081fd5434e5e619 -
Branch / Tag:
refs/tags/v0.4.1 - Owner: https://github.com/Vortiago
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@b9b7ecabe9d98ba245f8a20e8081fd5434e5e619 -
Trigger Event:
push
-
Statement type: