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

@tetsuo-ai/docs-mcp

v0.1.0

Published

MCP server serving AgenC documentation, contract artifacts, and issue context to AI agents

Readme

@tetsuo-ai/docs-mcp

MCP server serving AgenC documentation, architecture references, and contract artifacts to AI agents.

Overview

This server indexes repo documentation and selected machine-readable contract artifacts as MCP tools, resources, and prompts. It enables AI agents to:

  • Search repo docs, planning docs, runtime docs, and contract artifacts
  • Get implementation context for specific roadmap issues
  • View phase dependency graphs and implementation orders
  • Get runtime module templates and coding conventions

Indexed corpus:

  • docs/**/*.md
  • docs/**/*.json
  • runtime/docs/**/*.md
  • runtime/idl/**/*.json
  • runtime/benchmarks/**/*.json
  • scripts/idl/**/*.json
  • package-local docs and changelogs under top-level packages, apps, platforms, programs, migrations, and examples/** when present
  • root docs: README.md, AGENTS.md, CODEX.md, and REFACTOR-MASTER-PROGRAM.md when present

Important limits:

  • This server indexes documentation and contract artifacts, not source code.
  • docs_get_issue_context and docs_get_phase_graph still derive from docs/architecture/issue-map.json and docs/ROADMAP.md, and currently expose only the legacy runtime-roadmap issue/phase model.
  • docs_get_module_template and docs_get_module_info are runtime-module helpers, not whole-repository architecture tools.

Usage

# Build
cd docs-mcp && npm install && npm run build

# Add to Claude Code
claude mcp add agenc-docs -- node /path/to/AgenC/docs-mcp/dist/index.cjs

# Or with custom docs root
claude mcp add agenc-docs -e DOCS_ROOT=/path/to/AgenC -- node /path/to/AgenC/docs-mcp/dist/index.cjs

Tools

| Tool | Description | |------|-------------| | docs_search | Full-text search across repo docs, planning docs, runtime docs, and contract artifacts | | docs_get_issue_context | Implementation context for a specific legacy runtime-roadmap issue (#1051-#1110) | | docs_get_phase_graph | Dependency graph + implementation order for a legacy runtime-roadmap phase (1-10) | | docs_get_module_template | Boilerplate template for creating a new runtime module | | docs_get_module_info | Architecture details about an existing runtime module | | docs_get_conventions | Type, testing, and error handling conventions |

Prompts

| Prompt | Description | |--------|-------------| | implement-issue | 10-step guided implementation workflow for a specific issue | | explore-phase | Phase exploration before starting implementation |

Resources

Indexed docs and contract artifacts are exposed as MCP resources. Resource prefixes include:

  • agenc-docs://architecture/... for docs/architecture/**
  • agenc-docs://docs/... for other docs/** content
  • agenc-docs://runtime-docs/... for runtime/docs/**
  • agenc-docs://repo/... for indexed repo-root docs and other indexed non-docs/ surfaces

Special aggregate resources:

  • agenc-docs://issue-map — full issue-map.json
  • agenc-docs://roadmap — full ROADMAP.md
  • agenc-docs://conventions — all guide docs concatenated
  • agenc-docs://scope — indexed scope manifest and current limits

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | DOCS_ROOT | Auto-detected (walks up to Anchor.toml) | Path to repo root |

Dependencies

  • @modelcontextprotocol/sdk — MCP server framework
  • zod — Input validation
  • node:fs, node:path — File system access (zero external deps beyond MCP SDK)