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

@iflow-mcp/dioptx-mcp-atom-of-thoughts

v2.1.0

Published

MCP server for structured reasoning via Atom of Thoughts — decompose problems into atomic units with confidence tracking and interactive visualization

Downloads

92

Readme

Atom of Thoughts

Structured reasoning for LLMs. Decompose → track confidence → visualize.

npm version license node tests TypeScript

Atom of Thoughts — interactive D3 visualization


Setup

Add to your MCP config:

{
  "mcpServers": {
    "atom-of-thoughts": {
      "command": "npx",
      "args": ["-y", "@dioptx/mcp-atom-of-thoughts"]
    }
  }
}

[!TIP] Works with Claude Code, Cursor, Windsurf, or any MCP client.

How it works

graph LR
    P["P · Premise"]:::premise --> R["R · Reasoning"]:::reasoning
    R --> H["H · Hypothesis"]:::hypothesis
    H --> V["V · Verification"]:::verification
    V --> C["C · Conclusion"]:::conclusion

    classDef premise fill:#6b7280,stroke:#9ca3af,color:#fff,font-weight:bold
    classDef reasoning fill:#3b82f6,stroke:#60a5fa,color:#fff,font-weight:bold
    classDef hypothesis fill:#eab308,stroke:#facc15,color:#000,font-weight:bold
    classDef verification fill:#06b6d4,stroke:#22d3ee,color:#fff,font-weight:bold
    classDef conclusion fill:#22c55e,stroke:#4ade80,color:#fff,font-weight:bold

Atoms depend on each other, carry confidence scores (0–1), and auto-terminate when a high-confidence conclusion is reached or max depth is hit.

Tools

| Tool | Purpose | |------|---------| | AoT | Deep reasoning — atoms up to depth 5 | | AoT-light | Fast reasoning — depth 3, auto-suggests conclusions | | atomcommands | Decompose atoms, check termination, adjust depth | | export_graph | Get the atom graph as JSON | | generate_visualization | Open an interactive D3 graph in your browser | | check_approval | Poll for approve/reject decisions from the UI |


Pass flags via args to change behavior:

{
  "args": ["-y", "@dioptx/mcp-atom-of-thoughts", "--mode", "fast", "--no-viz"]
}

| Flag | Default | What it does | |------|---------|--------------| | --mode full\|fast\|both | both | Which reasoning tools to register | | --no-viz | off | Skip visualization and approval tools | | --no-approval | off | Skip approval tool only | | --max-depth <n> | 5 / 3 | Override reasoning depth limit | | --output-dir <path> | OS temp | Where to write visualization HTML | | --downloads-dir <path> | ~/Downloads | Where to scan for approval files |

generate_visualization creates a self-contained HTML file (D3 bundled inline — works offline) and opens it in your browser. The UI shows:

  • Force-directed graph of all atoms and their dependencies
  • Color-coded nodes by type with confidence rings
  • Sidebar to approve/reject each phase or individual atom
  • JSON export that check_approval can poll

No internet connection required — everything is inlined into a single HTML file.

npx (recommended — zero install):

{ "command": "npx", "args": ["-y", "@dioptx/mcp-atom-of-thoughts"] }

npm global:

npm install -g @dioptx/mcp-atom-of-thoughts
{ "command": "mcp-atom-of-thoughts" }

Smithery:

npx -y @smithery/cli install @dioptx/mcp-atom-of-thoughts --client claude

Docker:

docker build -t aot .
{ "command": "docker", "args": ["run", "-i", "--rm", "aot"] }
git clone https://github.com/dioptx/mcp-atom-of-thoughts.git
cd mcp-atom-of-thoughts
npm install
npm test        # 121 tests
npm run build

MIT · Based on Atom of Thoughts