@contextstream/mcp-server 0.2.5 → 0.2.6
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 +31 -27
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,62 +29,66 @@ A powerful Model Context Protocol (MCP) server that provides code context, memor
|
|
|
29
29
|
- **Plan generation** — AI-powered development planning
|
|
30
30
|
- **Task generation** — Break down work into actionable tasks
|
|
31
31
|
|
|
32
|
-
##
|
|
32
|
+
## Installation
|
|
33
33
|
|
|
34
|
-
|
|
35
|
-
cd mcp/contextstream-mcp
|
|
36
|
-
cp .env.example .env # Edit with your API details
|
|
37
|
-
npm install
|
|
38
|
-
npm run dev # Start MCP server (stdio)
|
|
39
|
-
```
|
|
34
|
+
Add ContextStream to your AI tool's MCP configuration:
|
|
40
35
|
|
|
41
|
-
|
|
36
|
+
### Cursor / VS Code
|
|
37
|
+
```json
|
|
38
|
+
{
|
|
39
|
+
"mcpServers": {
|
|
40
|
+
"contextstream": {
|
|
41
|
+
"command": "npx",
|
|
42
|
+
"args": ["@contextstream/mcp-server"],
|
|
43
|
+
"env": {
|
|
44
|
+
"CONTEXTSTREAM_API_URL": "https://api.contextstream.io",
|
|
45
|
+
"CONTEXTSTREAM_API_KEY": "your_api_key"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
```
|
|
42
51
|
|
|
43
|
-
###
|
|
52
|
+
### Claude Code
|
|
44
53
|
```json
|
|
45
54
|
{
|
|
46
55
|
"mcpServers": {
|
|
47
56
|
"contextstream": {
|
|
48
|
-
"command": "
|
|
49
|
-
"args": ["
|
|
50
|
-
"cwd": "/path/to/contextstream/mcp/contextstream-mcp",
|
|
57
|
+
"command": "npx",
|
|
58
|
+
"args": ["@contextstream/mcp-server"],
|
|
51
59
|
"env": {
|
|
52
|
-
"CONTEXTSTREAM_API_URL": "
|
|
53
|
-
"CONTEXTSTREAM_API_KEY": "
|
|
54
|
-
"CONTEXTSTREAM_WORKSPACE_ID": "optional-default-workspace-uuid",
|
|
55
|
-
"CONTEXTSTREAM_PROJECT_ID": "optional-default-project-uuid"
|
|
60
|
+
"CONTEXTSTREAM_API_URL": "https://api.contextstream.io",
|
|
61
|
+
"CONTEXTSTREAM_API_KEY": "your_api_key"
|
|
56
62
|
}
|
|
57
63
|
}
|
|
58
64
|
}
|
|
59
65
|
}
|
|
60
66
|
```
|
|
61
67
|
|
|
62
|
-
###
|
|
68
|
+
### Windsurf
|
|
63
69
|
```json
|
|
64
70
|
{
|
|
65
71
|
"mcpServers": {
|
|
66
72
|
"contextstream": {
|
|
67
|
-
"command": "
|
|
68
|
-
"args": ["
|
|
73
|
+
"command": "npx",
|
|
74
|
+
"args": ["@contextstream/mcp-server"],
|
|
69
75
|
"env": {
|
|
70
|
-
"CONTEXTSTREAM_API_URL": "
|
|
71
|
-
"CONTEXTSTREAM_API_KEY": "
|
|
76
|
+
"CONTEXTSTREAM_API_URL": "https://api.contextstream.io",
|
|
77
|
+
"CONTEXTSTREAM_API_KEY": "your_api_key"
|
|
72
78
|
}
|
|
73
79
|
}
|
|
74
80
|
}
|
|
75
81
|
}
|
|
76
82
|
```
|
|
77
83
|
|
|
84
|
+
Get your API key at [contextstream.io](https://contextstream.io)
|
|
85
|
+
|
|
78
86
|
## Environment Variables
|
|
79
87
|
|
|
80
88
|
| Variable | Required | Description |
|
|
81
89
|
|----------|----------|-------------|
|
|
82
|
-
| `CONTEXTSTREAM_API_URL` | Yes | API base URL (
|
|
83
|
-
| `CONTEXTSTREAM_API_KEY` |
|
|
84
|
-
| `CONTEXTSTREAM_JWT` | One of | JWT token for authentication |
|
|
85
|
-
| `CONTEXTSTREAM_WORKSPACE_ID` | No | Default workspace for operations |
|
|
86
|
-
| `CONTEXTSTREAM_PROJECT_ID` | No | Default project for operations |
|
|
87
|
-
| `CONTEXTSTREAM_USER_AGENT` | No | Custom user agent string |
|
|
90
|
+
| `CONTEXTSTREAM_API_URL` | Yes | API base URL (`https://api.contextstream.io`) |
|
|
91
|
+
| `CONTEXTSTREAM_API_KEY` | Yes | Your API key from contextstream.io |
|
|
88
92
|
|
|
89
93
|
## Available Tools
|
|
90
94
|
|
package/package.json
CHANGED