@splicr/mcp-server 0.10.0 → 0.10.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/dist/cli.js +12 -4
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -273,9 +273,13 @@ async function setup() {
|
|
|
273
273
|
injectClaudeMd();
|
|
274
274
|
injectClaudeHook();
|
|
275
275
|
if (configured > 0) {
|
|
276
|
-
console.error(`\n Done! Splicr is connected to ${configured} agent(s)
|
|
277
|
-
console.error(' Start
|
|
278
|
-
console.error('
|
|
276
|
+
console.error(`\n Done! Splicr is connected to ${configured} agent(s).\n`);
|
|
277
|
+
console.error(' Start saving knowledge — it\'ll show up when you code:\n');
|
|
278
|
+
console.error(' Telegram t.me/SplicrBot — save links and text from your phone');
|
|
279
|
+
console.error(' Extension chrome.google.com/webstore (search "Splicr") — save from browser');
|
|
280
|
+
console.error(' Agent your coding agent can save with save_from_agent tool');
|
|
281
|
+
console.error(' Dashboard splicr.dev/dashboard — view everything you\'ve saved\n');
|
|
282
|
+
console.error(' Start a new session in any agent to begin.\n');
|
|
279
283
|
}
|
|
280
284
|
else {
|
|
281
285
|
console.error('\n Could not auto-configure any agents. Add manually:\n');
|
|
@@ -1105,8 +1109,12 @@ function printHelp() {
|
|
|
1105
1109
|
|
|
1106
1110
|
Quick start:
|
|
1107
1111
|
1. Run: npx @splicr/mcp-server setup
|
|
1108
|
-
2.
|
|
1112
|
+
2. Save knowledge from anywhere:
|
|
1113
|
+
- Telegram: t.me/SplicrBot (send links from your phone)
|
|
1114
|
+
- Browser: Chrome Web Store (search "Splicr")
|
|
1115
|
+
- Agent: save_from_agent tool (agents save learnings)
|
|
1109
1116
|
3. Open any coding agent — your saves show up when relevant
|
|
1117
|
+
4. Dashboard: splicr.dev/dashboard
|
|
1110
1118
|
`);
|
|
1111
1119
|
}
|
|
1112
1120
|
main().catch(err => {
|