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

@archaic-ai/mcp

v1.5.0

Published

MCP server for Archaic — architecture analysis and code visualization for Claude Code

Readme

Archaic MCP Server

MCP server that brings Archaic architecture analysis and visualization into Claude Code.

Archaic analyzes your codebase and generates interactive architecture diagrams — showing how components connect, how data flows, and how your system is structured. This MCP server lets Claude Code read and interact with that architecture data directly in your terminal.

What is Archaic?

Archaic is an AI-powered architecture analysis tool that understands your codebase and generates:

  • Architecture diagrams — components, services, databases, and how they connect
  • Execution flows — request traces showing how data moves through your system
  • Code maps — function-level dependency graphs

Download the desktop app (macOS) at tryarchaic.com.

Installation

npm install -g @archaic-ai/mcp

Claude Code setup

Add to your Claude Code config (~/.claude.json):

{
  "mcpServers": {
    "archaic": {
      "command": "archaic-mcp"
    }
  }
}

Or for project-scoped config, add to .mcp.json in your project root.

You can also configure this directly from the Archaic desktop app under Settings > Claude Code Integration.

Tools

| Tool | Description | |------|-------------| | get_desktop_architecture | Read the current architecture from the desktop app | | update_architecture | Push architecture changes to the live diagram | | create_task | Create a task for the desktop app | | get_pending_task | Check for pending tasks from the UI | | report_progress | Send status updates to the desktop app | | complete_task | Mark a task as done |

How It Works

The MCP server connects to the Archaic desktop app running locally. When Claude Code makes structural changes to your codebase, it can push updates to the architecture diagram in real-time.

The typical workflow:

  1. Open your project in Archaic Desktop and run an analysis
  2. Start Claude Code in your project — it connects to the MCP server automatically
  3. As Claude modifies code, it reads the architecture, creates tasks, and pushes diagram updates
  4. You see the architecture update live in the desktop app

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | ARCHAIC_DESKTOP_URL | No | http://127.0.0.1:7432 | Desktop app endpoint |

Example Usage

Once configured, you can ask Claude Code things like:

  • "Show me the architecture of my project"
  • "How does the authentication flow work?"
  • "What components depend on the database service?"
  • "Refactor the auth module and update the architecture"

Links

License

MIT