@contextstream/mcp-server 0.3.26 → 0.3.28

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.
Files changed (3) hide show
  1. package/README.md +20 -10
  2. package/dist/index.js +502 -722
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,25 @@
2
2
 
3
3
  Persistent memory, semantic search, and code intelligence for any MCP-compatible AI tool.
4
4
 
5
- ContextStream is a shared brain for your AI workflows. It stores decisions, preferences, and lessons, and lets your AI tools search and analyze your codebase with consistent context across sessions.
5
+ ContextStream is a shared "brain" for your AI workflows. It stores decisions, preferences, and lessons, and lets your AI tools search and analyze your codebase with consistent context across sessions.
6
+
7
+ ## Just Ask
8
+
9
+ **You don't need to memorize tool names.** Just describe what you want and your AI uses the right ContextStream tools automatically:
10
+
11
+ | You say... | ContextStream does... |
12
+ |------------|----------------------|
13
+ | "session summary" | Gets a summary of your workspace context |
14
+ | "what did we decide about auth?" | Recalls past decisions about authentication |
15
+ | "remember we're using PostgreSQL" | Saves this to memory for future sessions |
16
+ | "search for payment code" | Searches your codebase semantically |
17
+ | "what depends on UserService?" | Analyzes code dependencies |
18
+
19
+ No special syntax. No commands to learn. Just ask.
20
+
21
+ > **Tip:** For best results, add the [recommended editor rules](https://contextstream.io/docs/quickstart) so your AI consistently calls `session_init` / `context_smart` automatically.
22
+
23
+ ![ContextStream in action](compare1.gif)
6
24
 
7
25
  ## Features
8
26
 
@@ -111,13 +129,6 @@ If your account has no workspaces, ContextStream will prompt your AI assistant t
111
129
  - The current folder is created as a project inside that workspace
112
130
  - Recommended: call `workspace_bootstrap(workspace_name="...", folder_path="...")`
113
131
 
114
- ### Slash commands (prompts)
115
-
116
- Most MCP clients expose ContextStream prompts as `/contextstream:...` slash commands.
117
-
118
- - Prompts are parameter-free: selecting a command should immediately insert the template.
119
- - Templates avoid asking for workspace/project IDs and instead rely on `session_init` + session defaults.
120
-
121
132
  ## Free vs PRO tools
122
133
 
123
134
  Tools are labeled as `(Free)` or `(PRO)` in the MCP tool list.
@@ -128,8 +139,7 @@ Tools are labeled as `(Free)` or `(PRO)` in the MCP tool list.
128
139
 
129
140
  ## Troubleshooting
130
141
 
131
- - Prompts/tools not appearing: restart the client after editing MCP config; confirm Node 18+ is available to the client runtime.
132
- - Slash commands do nothing: update to the latest `@contextstream/mcp-server` and restart your MCP client (prompts are parameter-free and should insert immediately).
142
+ - Tools not appearing: restart the client after editing MCP config; confirm Node 18+ is available to the client runtime.
133
143
  - Unauthorized errors: verify `CONTEXTSTREAM_API_URL` and `CONTEXTSTREAM_API_KEY` (or `CONTEXTSTREAM_JWT`).
134
144
  - Wrong workspace/project: use `workspace_associate` to map the current repo folder to the correct workspace.
135
145