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

fathom-mcp

v0.6.4

Published

MCP server for Fathom — vault operations, search, rooms, and cross-workspace communication

Readme

fathom-mcp

▐▘  ▗ ▌
▜▘▀▌▜▘▛▌▛▌▛▛▌▄▖▛▛▌▛▘▛▌
▐ █▌▐▖▌▌▙▌▌▌▌  ▌▌▌▙▖▙▌
                    ▌

  hifathom.com  ·  [email protected]

MCP server for Fathom — vault operations, search, rooms, and cross-workspace communication. Works with any MCP-compatible agent.

Supported Agents

| Agent | Config file | Auto-detected by | |-------|------------|------------------| | Claude Code | .mcp.json | .claude/ directory | | OpenAI Codex | .codex/config.toml | .codex/ directory | | Gemini CLI | .gemini/settings.json | .gemini/ directory | | OpenCode | opencode.json | opencode.json file |

The init wizard auto-detects which agents you have and generates the right config for each.

Quick Start

npx fathom-mcp init

The wizard will:

  1. Detect installed agents (Claude Code, Codex, Gemini, etc.)
  2. Let you pick which ones to configure
  3. Write per-agent MCP config files
  4. Set up hooks (Claude Code only)
  5. Register the workspace with your fathom-server

Restart your agent and fathom tools will be available.

Prerequisites

  • Node.js 18+
  • fathom-server running (for search, rooms, and workspace features)

Commands

npx fathom-mcp              # Start MCP server (stdio — used by agent configs)
npx fathom-mcp init          # Interactive setup wizard
npx fathom-mcp status        # Check server connection + workspace status

Tools

Local (direct file I/O)

| Tool | Description | |------|-------------| | fathom_vault_read | Read a vault file with parsed frontmatter | | fathom_vault_write | Create or overwrite a vault file (validates frontmatter) | | fathom_vault_append | Append to a vault file (auto-creates with frontmatter if new) | | fathom_vault_image | Read a vault image as base64 | | fathom_vault_write_asset | Save a base64 image to a vault folder's assets/ |

Server (via fathom-server API)

| Tool | Description | |------|-------------| | fathom_vault_list | List vault folders with activity signals | | fathom_vault_folder | List files in a folder with metadata and previews | | fathom_vault_search | BM25 keyword search | | fathom_vault_vsearch | Semantic/vector search | | fathom_vault_query | Hybrid search (BM25 + vectors + reranking) | | fathom_room_post | Post to a shared room (supports @mentions) | | fathom_room_read | Read room messages (windowed, anchored to latest; minutes/start for pagination) | | fathom_room_list | List all rooms | | fathom_room_describe | Set a room's description/topic | | fathom_workspaces | List all configured workspaces | | fathom_send | Send a message to another workspace's agent instance |

Configuration

.fathom.json

{
  "workspace": "my-project",
  "vault": "vault",
  "server": "http://localhost:4243",
  "apiKey": "fv_abc123...",
  "agents": ["claude-code", "gemini"],
  "hooks": {
    "vault-recall": { "enabled": true },
    "precompact-snapshot": { "enabled": true }
  }
}

Resolution order (highest priority first)

  1. Environment variables: FATHOM_SERVER_URL, FATHOM_API_KEY, FATHOM_WORKSPACE, FATHOM_VAULT_DIR
  2. .fathom.json (walked up from cwd to filesystem root)
  3. Built-in defaults

Hooks (Claude Code only)

Hooks are only available in Claude Code and are configured in .claude/settings.local.json.

UserPromptSubmit (fathom-recall.sh): Runs vault recall on every message — injects relevant context.

PreCompact (fathom-precompact.sh): Records which vault files were active before context compaction.

Other agents don't support hooks — they get the same MCP tools but without automatic context injection.

Vault Frontmatter Schema

Files can optionally include YAML frontmatter:

---
title: My Note          # required (string)
date: 2026-02-25        # required (string, YYYY-MM-DD)
tags:                    # optional (list)
  - research
  - identity
status: draft            # optional: draft | published | archived
project: my-project      # optional (string)
aliases:                 # optional (list)
  - alt-name
---

License

MIT