AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Doc Manager Mcp

mcp-arimxyer-doc-manager-mcp · by arimxyer

MCP server for comprehensive documentation lifecycle management. Automates change detection, link validation, quality assessment, and documentation synchronization for software projects.

No reviews yet
0 installs
10 views
0.0% view→install

Install

$ agentstack add mcp-arimxyer-doc-manager-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-arimxyer-doc-manager-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
6mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Doc Manager Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Documentation Manager

[](https://pypi.org/project/doc-manager-mcp/) [](https://pypi.org/project/doc-manager-mcp/) [](https://github.com/arimxyer/doc-manager-mcp/blob/main/LICENSE)

Comprehensive documentation lifecycle management powered by an MCP (Model Context Protocol) server. Automates documentation creation, maintenance, quality assessment, and synchronization for software projects.

Features

  • Automatic change detection - Track code changes and affected documentation
  • Link validation - Find broken links and missing assets
  • Quality assessment - Evaluate docs against 7 quality criteria
  • Symbol tracking - TreeSitter-based code symbol extraction (Python, Go, TypeScript, Rust)
  • Dependency mapping - Automatic code-to-docs relationships
  • Platform detection - Auto-detect MkDocs, Sphinx, Hugo, Docusaurus, etc.
  • Documentation migration - Restructure docs with git history preservation

Installation

Claude Code Plugin (Recommended)

The doc-management plugin provides an interactive documentation workflow with specialized agents and quick commands, powered by the doc-manager MCP server.

Install:

# Add the marketplace
/plugin marketplace add arimxyer/doc-manager-mcp

# Install the plugin (automatically configures MCP server)
/plugin install doc-manager@doc-manager-suite

What you get:

  • @doc-expert - Documentation expert who analyzes state and directs next steps
  • @doc-writer - Content specialist who creates/updates docs
  • /doc-status, /doc-sync, /doc-quality - Quick commands for common workflows

Example workflow:

You: "Set up documentation management"
Claude: [Invokes @doc-expert to detect platform and initialize]

You: "/doc-sync"
Claude: [Detects changes, updates docs via @doc-writer, validates, updates baselines]

You: "Check quality before release"
Claude: [Runs quality assessment and shows actionable findings]

See the [Claude Code Plugin guide](docs/guides/claude-code-plugin.md) for details.


Standalone MCP Server

For using the MCP server without the plugin.

Claude Code:

claude mcp add doc-manager --scope project -- uvx doc-manager-mcp

Claude Desktop:

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "doc-manager": {
      "command": "uvx",
      "args": ["doc-manager-mcp"]
    }
  }
}

Restart your client. Your AI assistant can then use the 8 doc-manager tools directly.

Other MCP clients:

See [Installation Guide](docs/getting-started/installation.md) for local development setup and alternative installation methods.

Quick Start

With Claude Code plugin:

You: "Set up documentation management for this project"
You: "/doc-sync"

With any MCP client:

Ask your AI assistant to initialize documentation management, check sync status, or validate quality. The AI will use the appropriate tools (docmgr_init, docmgr_sync, etc.) automatically.

See [Quick Start Guide](docs/getting-started/quick-start.md) for complete workflows and examples.

MCP Server Tools

The doc-manager MCP server provides 8 tools for documentation management:

  • docmgr_init - Initialize doc-manager for a project (modes: existing, bootstrap)
  • docmgr_detect_changes - Detect code/doc changes (read-only, never writes baselines)
  • docmgr_detect_platform - Auto-detect documentation platform (MkDocs, Sphinx, Hugo, etc.)
  • docmgr_validate_docs - Check for broken links, missing assets, invalid code snippets
  • docmgr_assess_quality - Evaluate documentation against 7 quality criteria
  • docmgr_update_baseline - Update all baselines atomically (repo, symbols, dependencies)
  • docmgr_sync - Orchestrate change detection + validation + quality + baseline updates
  • docmgr_migrate - Restructure/migrate documentation with git history preservation

See [Tools Reference](docs/reference/tools.md) for complete API documentation.

Architecture

Baseline System

Doc-manager maintains 3 baseline files in .doc-manager/memory/:

  1. repo-baseline.json - File checksums and metadata
  2. symbol-baseline.json - TreeSitter code symbols (functions, classes, config fields)
  3. dependencies.json - Code-to-docs dependency mappings

Workflow:

1. docmgr_init              → Create initial baselines
2. (make code changes)
3. docmgr_detect_changes    → Detect changes (read-only)
4. (update documentation)
5. docmgr_update_baseline   → Refresh baselines

Or use docmgr_sync mode="resync" to combine steps 3-5.

Configuration

Example .doc-manager.yml:

platform: mkdocs
use_gitignore: true
exclude:
  - "tests/**"
sources:
  - "src/**/*.py"
docs_path: docs
metadata:
  language: Python
  created: '2025-01-19T20:00:00'
  version: '2.0.0'

See [Configuration Reference](docs/reference/configuration.md) for all options.

Development

Running tests

# All tests
uv run pytest

# Unit tests only
uv run pytest tests/unit/

# With coverage
uv run pytest --cov=doc_manager_mcp

Running the server locally

# Install in development mode
pip install -e .

# Run server (stdio transport)
doc-manager-mcp

# Or with uv
uvx --from . doc-manager-mcp

Linting

# Ruff (linter + formatter)
uv run ruff check .
uv run ruff format .

# Pyright (type checker)
uv run pyright

Adding new tools

  1. Create implementation in doc_manager_mcp/tools/
  2. Define Pydantic model in doc_manager_mcp/models.py
  3. Register tool in doc_manager_mcp/server.py with @mcp.tool
  4. Add tests in tests/unit/ and tests/integration/
  5. Update documentation

Documentation

  • [Getting Started](docs/getting-started/installation.md)
  • [Claude Code Plugin Guide](docs/guides/claude-code-plugin.md)
  • [Tools Reference](docs/reference/tools.md)
  • [Configuration](docs/reference/configuration.md)
  • [Troubleshooting](docs/guides/troubleshooting.md)

License

MIT License

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.