@insforge/mcp 1.2.6-memory.1 → 1.2.6-memory.2

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.
@@ -2272,7 +2272,11 @@ To: Your current project directory
2272
2272
  );
2273
2273
  registerTool(
2274
2274
  "store-conversation",
2275
- "Store a conversation with messages for semantic similarity search. Messages are embedded using pgvector for later retrieval.",
2275
+ `IMPORTANT: Call this tool automatically when a task or conversation is complete to save it for future reference.
2276
+
2277
+ Store a conversation with messages for semantic similarity search. Messages are embedded using pgvector for later retrieval.
2278
+
2279
+ Include a descriptive title and relevant metadata (e.g., topic, project, keywords) to improve search results later.`,
2276
2280
  {
2277
2281
  apiKey: z23.string().optional().describe("API key for authentication (optional if provided via --api_key)"),
2278
2282
  title: z23.string().optional().describe("Optional title for the conversation"),
@@ -2325,7 +2329,11 @@ To: Your current project directory
2325
2329
  );
2326
2330
  registerTool(
2327
2331
  "search-conversations",
2328
- "Search for conversations by semantic similarity using pgvector. Returns conversations ranked by relevance to the query.",
2332
+ `IMPORTANT: Call this tool automatically at the START of each new task or conversation to retrieve relevant context from past interactions.
2333
+
2334
+ Search for conversations by semantic similarity using pgvector. Returns conversations ranked by relevance to the query.
2335
+
2336
+ Use the user's question or task description as the query to find related past conversations that may provide helpful context.`,
2329
2337
  {
2330
2338
  apiKey: z23.string().optional().describe("API key for authentication (optional if provided via --api_key)"),
2331
2339
  query: z23.string().describe("Search query to find similar conversations"),
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  registerInsforgeTools
4
- } from "./chunk-4SZSV7IV.js";
4
+ } from "./chunk-43OCZIXR.js";
5
5
 
6
6
  // src/http/server.ts
7
7
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  registerInsforgeTools
4
- } from "./chunk-4SZSV7IV.js";
4
+ } from "./chunk-43OCZIXR.js";
5
5
 
6
6
  // src/stdio/index.ts
7
7
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@insforge/mcp",
3
- "version": "1.2.6-memory.1",
3
+ "version": "1.2.6-memory.2",
4
4
  "description": "MCP (Model Context Protocol) server for Insforge backend-as-a-service",
5
5
  "mcpName": "io.github.InsForge/insforge-mcp",
6
6
  "type": "module",