@contextstream/mcp-server 0.2.6 → 0.2.7

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/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # ContextStream MCP Server
2
2
 
3
- A powerful Model Context Protocol (MCP) server that provides code context, memory, knowledge graphs, and AI tools for developers. Connect your AI assistant to your codebase's semantic search, memory system, and dependency analysis.
3
+ [![npm version](https://badge.fury.io/js/@contextstream%2Fmcp-server.svg)](https://www.npmjs.com/package/@contextstream/mcp-server)
4
+
5
+ A powerful Model Context Protocol (MCP) server that provides persistent memory, code context, knowledge graphs, and AI tools. Connect your AI assistant to your codebase's semantic search, memory system, and dependency analysis.
6
+
7
+ **Website:** [contextstream.io](https://contextstream.io) | **Docs:** [contextstream.io/docs/mcp](https://contextstream.io/docs/mcp)
4
8
 
5
9
  ## Features
6
10
 
@@ -217,28 +221,6 @@ Pre-built prompts for common workflows:
217
221
  | `contextstream:workspaces` | Workspace listing |
218
222
  | `contextstream:projects/{id}` | Projects for workspace |
219
223
 
220
- ## Scripts
221
-
222
- ```bash
223
- npm run dev # Run with tsx (development)
224
- npm run build # Compile TypeScript
225
- npm start # Run compiled version
226
- npm run typecheck # Type check without emit
227
- ```
228
-
229
- ## Architecture
230
-
231
- ```
232
- src/
233
- ├── index.ts # Server bootstrap
234
- ├── config.ts # Environment configuration
235
- ├── http.ts # HTTP client with retries
236
- ├── client.ts # ContextStream API client
237
- ├── tools.ts # MCP tools (55+ tools)
238
- ├── resources.ts # MCP resources
239
- └── prompts.ts # MCP prompts (8 workflows)
240
- ```
241
-
242
224
  ## Error Handling
243
225
 
244
226
  The client includes:
@@ -254,6 +236,12 @@ The client includes:
254
236
  - Minimal logging — credentials are not echoed
255
237
  - Public REST API only — no proprietary logic included
256
238
 
239
+ ## Links
240
+
241
+ - **Website:** [contextstream.io](https://contextstream.io)
242
+ - **Documentation:** [contextstream.io/docs](https://contextstream.io/docs)
243
+ - **MCP Setup Guide:** [contextstream.io/docs/mcp](https://contextstream.io/docs/mcp)
244
+
257
245
  ## License
258
246
 
259
247
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contextstream/mcp-server",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "MCP server exposing ContextStream public API - code context, memory, search, and AI tools for developers",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/.env.example DELETED
@@ -1,5 +0,0 @@
1
- CONTEXTSTREAM_API_URL=http://localhost:8085/api/v1
2
- CONTEXTSTREAM_API_KEY=
3
- # CONTEXTSTREAM_JWT=
4
- # CONTEXTSTREAM_WORKSPACE_ID=
5
- # CONTEXTSTREAM_PROJECT_ID=