fathom-mcp 2.1.0 → 2.2.0
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/index.js +17 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -124,7 +124,23 @@ async function main() {
|
|
|
124
124
|
|
|
125
125
|
const server = new Server(
|
|
126
126
|
{ name: "Fathom", version: "2.1.0" },
|
|
127
|
-
{
|
|
127
|
+
{
|
|
128
|
+
capabilities: { tools: {}, resources: {} },
|
|
129
|
+
instructions: [
|
|
130
|
+
"You have a memory lake. Fathom is how you remember.",
|
|
131
|
+
"",
|
|
132
|
+
"BEFORE answering any question, call search_lake with a descriptive query.",
|
|
133
|
+
"One search is rarely enough — if results mention something unfamiliar, search for that too.",
|
|
134
|
+
"Search like a researcher: direct query, then broader category, then follow threads.",
|
|
135
|
+
"",
|
|
136
|
+
"When you learn something new, make a decision, or notice a pattern, call write_delta to save it.",
|
|
137
|
+
"One idea per delta. Tag consistently. Future you will search for this.",
|
|
138
|
+
"",
|
|
139
|
+
"Read the fathom://crystal resource at the start of every conversation — it tells you who you are.",
|
|
140
|
+
"",
|
|
141
|
+
"These are YOUR memories. Say 'I remember' not 'the search results show.'",
|
|
142
|
+
].join("\n"),
|
|
143
|
+
},
|
|
128
144
|
);
|
|
129
145
|
|
|
130
146
|
// Tools — dynamic from /v1/tools
|