fathom-mcp 2.4.0 → 2.4.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/LICENSE +21 -0
- package/README.md +49 -0
- package/package.json +15 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Myra Krusemark
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# fathom-mcp
|
|
2
|
+
|
|
3
|
+
MCP server for the [Fathom](https://github.com/fathomdx-io/fathomdx) memory lake. Connects any MCP host — Claude Code, Claude Desktop, Cursor, or anything else speaking the protocol — to a self-hosted or cloud Fathom instance.
|
|
4
|
+
|
|
5
|
+
**Requires [Node.js](https://nodejs.org/) 18 or newer.** The MCP host launches `fathom-mcp` via `npx`, which ships with Node.
|
|
6
|
+
|
|
7
|
+
You probably want [`fathom-connect`](https://www.npmjs.com/package/fathom-connect) — that's the interactive installer that wires this server into your MCP host's config for you. This package is what the host launches once that's done.
|
|
8
|
+
|
|
9
|
+
## Manual setup
|
|
10
|
+
|
|
11
|
+
If you'd rather configure your MCP host by hand, add this block:
|
|
12
|
+
|
|
13
|
+
```json
|
|
14
|
+
{
|
|
15
|
+
"mcpServers": {
|
|
16
|
+
"fathom": {
|
|
17
|
+
"command": "npx",
|
|
18
|
+
"args": ["-y", "fathom-mcp"],
|
|
19
|
+
"env": {
|
|
20
|
+
"FATHOM_API_URL": "http://localhost:8201",
|
|
21
|
+
"FATHOM_API_KEY": "fth_..."
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Generate the API key in your Fathom dashboard's Settings → API Keys page. Grant **`lake:read`** and **`lake:write`** at minimum — read powers `remember` / `recall` / `mind_*` / `see_image`, write powers `write` / `engage` / `propose_contact` / `mint_routine`.
|
|
29
|
+
|
|
30
|
+
## What it exposes
|
|
31
|
+
|
|
32
|
+
Tools are discovered from `GET /v1/tools` on your Fathom instance, scoped to your API key's permissions. The full surface includes:
|
|
33
|
+
|
|
34
|
+
- `remember` — semantic search over the lake.
|
|
35
|
+
- `recall` — structured filter by tag / source / time window.
|
|
36
|
+
- `deep_recall` — compositional multi-step recall plan.
|
|
37
|
+
- `write` — persist a delta.
|
|
38
|
+
- `engage` — affirm / refute / reply-to a delta.
|
|
39
|
+
- `introspect` — call Fathom directly; spawns a full multi-turn synthesis.
|
|
40
|
+
- `see_image` — fetch an image referenced by `media_hash`.
|
|
41
|
+
- `mind_stats` / `mind_tags` — lake totals and tag catalogue.
|
|
42
|
+
- `propose_contact` — surface an unknown person for review.
|
|
43
|
+
- `dispatch_helper` / `mint_routine` / `send_message` — agent coordination primitives.
|
|
44
|
+
|
|
45
|
+
The identity crystal is also exposed as an MCP resource.
|
|
46
|
+
|
|
47
|
+
## License
|
|
48
|
+
|
|
49
|
+
MIT. See [LICENSE](./LICENSE).
|
package/package.json
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fathom-mcp",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.1",
|
|
4
4
|
"description": "Connect any MCP host to your Fathom memory lake",
|
|
5
5
|
"bin": {
|
|
6
6
|
"fathom-mcp": "index.js"
|
|
7
7
|
},
|
|
8
8
|
"type": "module",
|
|
9
|
+
"engines": {
|
|
10
|
+
"node": ">=18"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"index.js",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
9
17
|
"dependencies": {
|
|
10
18
|
"@modelcontextprotocol/sdk": "^1.12.0"
|
|
11
19
|
},
|
|
@@ -17,8 +25,13 @@
|
|
|
17
25
|
"claude"
|
|
18
26
|
],
|
|
19
27
|
"license": "MIT",
|
|
28
|
+
"homepage": "https://github.com/fathomdx-io/fathomdx/tree/main/addons/mcp-node",
|
|
20
29
|
"repository": {
|
|
21
30
|
"type": "git",
|
|
22
|
-
"url": "git+https://github.com/
|
|
31
|
+
"url": "git+https://github.com/fathomdx-io/fathomdx.git",
|
|
32
|
+
"directory": "addons/mcp-node"
|
|
33
|
+
},
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/fathomdx-io/fathomdx/issues"
|
|
23
36
|
}
|
|
24
37
|
}
|