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

@codeatlas-ai/mcp-server

v2.1.0

Published

Universal Model Context Protocol (MCP) Server for CodeAtlas — AI context intelligence for Cursor, Claude, Windsurf, Devin, Kimi, Antigravity, and all AI coding agents.

Readme

@codeatlas-ai/mcp-server

Universal Model Context Protocol (MCP) Server for CodeAtlas — providing native AST indexing, dependency graph exploration, explainable context retrieval, and architecture rules to all AI coding agents.


Supported AI Coding Agents

| AI Agent | Integration Protocol | Configuration File | | :------------------------ | :------------------- | :------------------------------------- | | Google Antigravity | Native MCP / AGY CLI | .agents/mcp_config.json | | Claude Desktop | MCP (stdio) | claude_desktop_config.json | | Claude Code (CLI) | MCP (stdio) | claude mcp add | | Cursor | MCP (stdio) | .cursor/mcp.json / Features Settings | | Windsurf (Codeium) | MCP (stdio) | ~/.codeium/windsurf/mcp_config.json | | Devin | MCP Client | Project Settings | | OpenHands (OpenDevin) | MCP Transport | config.toml | | Cline / Roo Code | MCP (stdio) | Editor Settings | | Kimi Code / Moonshot | Multi-LLM API & MCP | CodeAtlas API Bridge | | Grok / xAI Build | Multi-LLM API & MCP | CodeAtlas API Bridge |


Setup & Configuration

1. Google Antigravity (.agents/mcp_config.json or ~/.gemini/config/mcp_config.json)

{
  "mcpServers": {
    "codeatlas": {
      "command": "atlas",
      "args": ["mcp"]
    }
  }
}

2. Claude Code CLI

claude mcp add codeatlas atlas -- mcp

3. Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "codeatlas": {
      "command": "atlas",
      "args": ["mcp"]
    }
  }
}

4. Cursor (.cursor/mcp.json or Settings > Features > MCP)

{
  "mcpServers": {
    "codeatlas": {
      "command": "atlas",
      "args": ["mcp"],
      "type": "stdio"
    }
  }
}

5. Windsurf (~/.codeium/windsurf/mcp_config.json)

{
  "mcpServers": {
    "codeatlas": {
      "command": "atlas",
      "args": ["mcp"]
    }
  }
}

Exposed MCP Tools (16 Tools)

  • atlas_scan: Scans languages, frameworks, package managers, and workspaces.
  • atlas_index: Rebuilds/updates AST symbols, dependencies, and temporal git metrics (with secret redaction).
  • atlas_search: Fast SQLite FTS5 BM25 search over files, functions, and symbols.
  • atlas_get_context: Returns an intent-aware (bug/feature/refactor), token-budgeted context bundle.
  • atlas_graph_query: Runs Cypher-like graph queries over the dependency graph.
  • atlas_pr_diff: Generates a smart Pull Request diff with architectural impact analysis.
  • atlas_compress: Compresses large source files into signature skeletons with automated secret redaction.
  • atlas_get_map: Returns hierarchical directory map with exported symbols.
  • atlas_get_rules: Returns active coding rules and conflicts from AGENTS.md, CLAUDE.md, etc.
  • atlas_doctor: Diagnostics on database status, indexed files, and symbol counts.
  • atlas_analyze: Deep architectural audit for DDD layer regressions, dead code, circular dependencies, and hotspots.
  • atlas_trace_execution_path: Traces full call hierarchies upstream to entry points or downstream to leaf dependencies.
  • atlas_find_entry_points: Discovers controllers, HTTP handlers, CLI commands, and root exported functions.
  • atlas_calculate_change_surface: Computes downstream blast radius for proposed symbol modifications.
  • atlas_security_audit: SAST security audit detecting injection vulnerabilities and leaked secrets.
  • atlas_plan_feature: Autonomous feature planning tool generating step-by-step implementation blueprints.

Exposed MCP Resources

  • atlas://architecture/map: Codebase architectural layout and file list.
  • atlas://architecture/rules: Discovered multi-agent coding guidelines.
  • atlas://architecture/graph: Topological dependency graph and edge weights.

Exposed MCP Prompt Templates

  • explain_codebase: Step-by-step walkthrough of the repository architecture.
  • plan_feature: Context-aware implementation plan for any proposed feature.
  • review_pr: Senior architectural code review for current PR changes.