@context-forge/mcp 0.6.43 → 0.7.0
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 +6 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -19,11 +19,14 @@ Context Forge eliminates that overhead. You configure your project once — temp
|
|
|
19
19
|
### Install
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
#
|
|
23
|
-
|
|
22
|
+
# Recommended: meta-package installs both MCP server and CLI
|
|
23
|
+
npm install -g @context-forge/context-forge
|
|
24
24
|
|
|
25
|
-
# Or install
|
|
25
|
+
# Or install the MCP server alone
|
|
26
26
|
npm install -g @context-forge/mcp
|
|
27
|
+
|
|
28
|
+
# Or run directly (no install needed)
|
|
29
|
+
npx @context-forge/mcp
|
|
27
30
|
```
|
|
28
31
|
|
|
29
32
|
### Configure for Claude Code
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@context-forge/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "MCP server for Context Forge — generates structured AI context prompts from project configuration and templates",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
36
36
|
"zod": "^4.1.5",
|
|
37
|
-
"@context-forge/core": "0.
|
|
37
|
+
"@context-forge/core": "0.7.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/node": "^25.3.0",
|