npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@sigee-min/outline-mcp

v0.1.2

Published

MCP stdio server for Outline workspaces

Readme

@sigee-min/outline-mcp

TypeScript MCP (stdio) server for Outline Cloud and self-hosted Outline.

npm version Node.js License: MIT CI Docker

What Is Outline?

Outline is a collaborative team knowledge base. Teams use Outline to write and organize internal documentation such as handbooks, runbooks, product docs, and operational playbooks.

This package exposes that workspace through MCP so agents can interact with Outline content in a controlled, automatable way.

Architecture

  • src/domain: domain models
  • src/services: lease and capability-probe application services
  • src/outline: Outline API gateway
  • src/server: MCP interface layer
    • registrars: tool/resource registration by use-case
    • permissions.ts, tool-responses.ts: shared cross-cutting helpers

Environment Variables

| Variable | Default | Notes | |---|---|---| | OUTLINE_API_KEY | required | API token | | OUTLINE_BASE_URL | https://app.getoutline.com | Set self-hosted endpoint if needed | | OUTLINE_ALLOWED_ACTIONS | read,write,delete | read, write, delete, admin | | OUTLINE_REQUEST_TIMEOUT_MS | 15000 | Request timeout | | OUTLINE_RETRY_COUNT | 2 | Retry count for 429/5xx | | OUTLINE_ENABLE_CAPABILITY_PROBE | true | Probes optional endpoints at startup | | OUTLINE_LEASE_STRATEGY | auto | auto, memory, data_attribute | | OUTLINE_LEASE_ATTRIBUTE_ID | none | Required for data_attribute strategy | | OUTLINE_LEASE_DEFAULT_TTL_SECONDS | 600 | Default lease TTL | | OUTLINE_LEASE_MAX_TTL_SECONDS | 7200 | Max lease TTL |

Local Development

pnpm --filter @sigee-min/outline-mcp dev

Tool Surface

| Group | Tools | |---|---| | Server | server_info | | Collections | list_collections, get_collection_structure, create_collection, update_collection, delete_collection | | Documents | read_document, export_document, search_documents, get_document_id_from_title, get_document_backlinks, create_document, update_document, move_document, delete_document, safe_update_document | | Document Lifecycle | archive_document, unarchive_document, restore_document, list_archived_documents, list_trash | | Batch Operations | batch_create_documents, batch_update_documents, batch_move_documents, batch_archive_documents, batch_delete_documents | | Templates | list_templates, create_template_from_document, create_document_from_template | | AI | ask_ai_about_documents | | Comments | list_comments, get_comment, create_comment, update_comment, delete_comment | | Lease | acquire_document_lease, renew_document_lease, release_document_lease, get_active_document_lease | | Memberships | list_document_users, list_document_memberships, list_document_group_memberships, add_document_user, remove_document_user, add_document_group, remove_document_group, list_collection_memberships, list_collection_group_memberships, add_collection_user, remove_collection_user, add_collection_group, remove_collection_group | | Export | export_collection, export_all_collections, list_file_operations, get_file_operation, download_file_operation |

Resource URIs

  • outline://collection/{collection_id}
  • outline://collection/{collection_id}/tree
  • outline://collection/{collection_id}/documents
  • outline://document/{document_id}
  • outline://document/{document_id}/backlinks

Inspector E2E

OUTLINE_API_KEY=... pnpm --filter @sigee-min/outline-mcp e2e:inspector
  • Loads .env, .env.local, .env.e2e from repo root, then apps/mcp
  • Shell env values always take precedence
  • Scenarios include permission matrix, safe-update conflict detection, lease contention, comments negative cases, export flow, membership roundtrip, and cleanup rollback