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

@aramassa/mcp-docs-collector

v1.3.0

Published

MCP server for collecting documentation from various sources including Git repositories, local files, Confluence, and web pages.

Readme

@aramassa/mcp-docs-collector

MCP server for collecting documentation from various sources including Git repositories, local files, Confluence, and web pages.

Installation

npm install -g @aramassa/mcp-docs-collector

Or use with npx:

npx -y @aramassa/mcp-docs-collector@latest collect --config mcp_docs.yaml --output ./output

Quick Start

  1. Create a configuration file mcp_docs.yaml:
docs:
  - type: local
    path: ./docs
    resources:
      - name: markdown-docs
        includes: ["**/*.md"]

  - type: git
    repoUrl: https://github.com/example/repo.git
    resources:
      - name: api-docs
        includes: ["docs/**/*.md"]
  1. Run the collector:
mcp-docs-collector --config mcp_docs.yaml

Features

  • Multiple Source Types: Local files, Git repositories, Confluence, and web pages
  • Flexible Configuration: YAML-based configuration with environment variable support
  • MCP Protocol: Compatible with Model Context Protocol servers
  • Automatic Conversion: HTML to Markdown conversion with content extraction
  • Cache Support: Built-in caching for web resources
  • Frontmatter Support: Automatic YAML frontmatter extraction from Markdown files

Supported Resource Types

| Type | Description | Use Case | |------|-------------|----------| | local | Local filesystem | Project documentation, source code | | git | Git repositories | External repository documentation | | confluence | Confluence Wiki | Organization knowledge base | | web | Web pages & sitemaps | Public API specs, external docs |

Configuration Example

export_envs:
  - GITHUB_TOKEN
  - CONFLUENCE_PAT

docs:
  - type: local
    path: ./docs
    resources:
      - name: project-docs
        includes: ["**/*.md"]
        excludes: ["node_modules/**"]

  - type: git
    repoUrl: [email protected]:example/repo.git
    branch: main
    resources:
      - name: external-docs
        includes: ["docs/**/*.md"]

  - type: confluence
    baseUrl: https://company.atlassian.net/wiki
    apiKey: ${CONFLUENCE_PAT}
    userEmail: ${USER_EMAIL}
    resources:
      - name: wiki-docs
        spaceKey: DEV
        includes: ["**"]

  - type: web
    baseUrl: https://example.com
    resources:
      - name: website-docs
        sitemapUrl: https://example.com/sitemap.xml
        includes: ["docs/**"]

CLI Options

mcp-docs-collector --config <config-file> [options]

| Option | Description | |--------|-------------| | --config <path> | Path to YAML configuration file | | --env-file <path> | Path to environment variables file | | --help | Display help information |

Documentation

For detailed documentation, configuration options, and examples, visit:

License

ISC

Author

Aramassa