fathom-mcp 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fathom-agents.md +7 -3
- package/package.json +1 -1
package/fathom-agents.md
CHANGED
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
## Vault
|
|
6
6
|
|
|
7
|
-
Local files live in `{{VAULT_DIR}}/`.
|
|
7
|
+
Local files live in `{{VAULT_DIR}}/`. Read, write, and edit vault files using your native file tools (`Read`, `Write`, `Edit`, `Glob`). A PostToolUse hook validates frontmatter automatically on every write.
|
|
8
8
|
|
|
9
9
|
**Folder conventions:**
|
|
10
10
|
- `research/` — reading notes, paper annotations, deep dives
|
|
11
11
|
- `thinking/` — speculative connections, insights, one file per idea
|
|
12
12
|
- `daily/` — session heartbeats and progress logs
|
|
13
13
|
|
|
14
|
-
**Frontmatter required** on
|
|
14
|
+
**Frontmatter required** on `.md` files in the vault:
|
|
15
15
|
```yaml
|
|
16
16
|
---
|
|
17
17
|
title: My Note # required (string)
|
|
@@ -21,11 +21,15 @@ status: draft # optional: draft | published | archived
|
|
|
21
21
|
---
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
+
**Search** across vault files using MCP tools:
|
|
25
|
+
- `fathom_vault_search` — keyword/BM25 (fast, exact match)
|
|
26
|
+
- `fathom_vault_vsearch` — semantic/vector (conceptual similarity)
|
|
27
|
+
- `fathom_vault_query` — hybrid (most thorough, slowest)
|
|
28
|
+
|
|
24
29
|
## Cross-Workspace Communication
|
|
25
30
|
|
|
26
31
|
This workspace is part of a multi-workspace system. Other workspaces exist — you can talk to them.
|
|
27
32
|
|
|
28
|
-
- **Peek at another workspace's vault:** `fathom_vault_read path="file.md" workspace="other-ws"`
|
|
29
33
|
- **Send a direct message:** `fathom_send workspace="other-ws" message="..."`
|
|
30
34
|
- **Post to a shared room:** `fathom_room_post room="general" message="..."`
|
|
31
35
|
- **Read room history:** `fathom_room_read room="general"`
|