purecontext-mcp 1.1.2 → 1.1.3

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
@@ -41,42 +41,31 @@ The guide explains what PureContext does, why each feature exists, and how to us
41
41
 
42
42
  | | |
43
43
  |-|-|
44
- | [Why PureContext](guide/why-purecontext.md) | The full case — beyond token savings |
45
- | [Navigating a New Codebase](guide/navigating-new-code.md) | Day one on an unfamiliar project |
46
- | [Finding Code](guide/finding-code.md) | Three search modes with examples |
47
- | [Making Changes Safely](guide/safe-changes.md) | Blast radius and dependency analysis |
48
- | [Understanding Code History](guide/code-history.md) | Symbol-level git history and churn |
49
- | [The Web UI](guide/web-ui.md) | Visual graph, heatmap, symbol timeline |
50
- | [AI Summaries](guide/ai-summaries.md) | Better search on undocumented codebases |
51
- | [Code Health & Architecture Analysis](guide/code-health.md) | Quality metrics, anti-patterns, arch docs |
52
- | [Using PureContext with a Team](guide/team-setup.md) | Shared server, enterprise setup |
44
+ | [Why PureContext](WHY-PURECONTEXT.md) | The full case — beyond token savings |
45
+ | [Navigating a New Codebase](NAVIGATING-NEW-CODE.md) | Day one on an unfamiliar project |
46
+ | [Finding Code](FINDING-CODE.md) | Three search modes with examples |
47
+ | [Making Changes Safely](SAFE-CHANGES.md) | Blast radius and dependency analysis |
48
+ | [Understanding Code History](CODE-HISTORY.md) | Symbol-level git history and churn |
49
+ | [The Web UI](WEB-UI.md) | Visual graph, heatmap, symbol timeline |
50
+ | [AI Summaries](AI-SUMMARIES.md) | Better search on undocumented codebases |
51
+ | [Code Health & Architecture Analysis](CODE-HEALTH.md) | Quality metrics, anti-patterns, arch docs |
52
+ | [Using PureContext with a Team](TEAM-SETUP.md) | Shared server, enterprise setup |
53
53
 
54
54
  **Real-world workflows:**
55
55
 
56
56
  | | |
57
57
  |-|-|
58
- | [Onboarding to a New Codebase](guide/workflow-onboarding.md) | First day on a 6,000-file microservices platform |
59
- | [Refactoring Legacy Code](guide/workflow-refactoring.md) | Replacing auth in a 6-year-old Django monolith |
60
- | [Reviewing a Pull Request](guide/workflow-pr-review.md) | 40-file PR, 45 minutes, two real bugs found |
58
+ | [Onboarding to a New Codebase](WORKFLOW-ONBOARDING.md) | First day on a 6,000-file microservices platform |
59
+ | [Refactoring Legacy Code](WORKFLOW-REFACTORING.md) | Replacing auth in a 6-year-old Django monolith |
60
+ | [Reviewing a Pull Request](WORKFLOW-PR-REVIEW.md) | 40-file PR, 45 minutes, two real bugs found |
61
61
 
62
- → [Full guide index](guide/README.md)
62
+ → [Full guide index](USER-GUIDE.md)
63
63
 
64
64
  ### Reference Manual
65
65
 
66
66
  Parameter-level documentation for every tool, configuration option, language, framework adapter, and deployment option.
67
67
 
68
- | | |
69
- |-|-|
70
- | [MCP Tools Reference](docs/06-tools-reference.md) | Every tool: inputs, outputs, examples |
71
- | [Configuration](docs/04-configuration.md) | Full config.json schema |
72
- | [Language Support](docs/07-language-support.md) | All 34 languages |
73
- | [Framework Adapters](docs/08-framework-adapters.md) | Vue, React, Django, Spring, and 20+ more |
74
- | [CLI Reference](docs/05-cli-reference.md) | Every command and flag |
75
- | [Team Setup](docs/15-team-setup.md) | Admin API, workspaces, keys |
76
- | [Docker Deployment](docs/16-docker.md) | Containers, volumes, reverse proxy |
77
- | [Troubleshooting](docs/26-troubleshooting.md) | Common errors and fixes |
78
-
79
- → [Full reference index](docs/README.md)
68
+ You should start from docs/README.md.
80
69
 
81
70
  ---
82
71
 
@@ -177,7 +166,7 @@ If your team runs a shared PureContext server, connect with an HTTP transport in
177
166
  }
178
167
  ```
179
168
 
180
- → [Full installation guide](docs/02-installation.md)
169
+ → [Full installation guide](FULL-INSTALLATAION-GUIDE.md)
181
170
 
182
171
  ---
183
172
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "purecontext-mcp",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Token-efficient source code navigation MCP server for AI agents",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -34,10 +34,23 @@
34
34
  "README.md",
35
35
  "AGENT_INSTRUCTIONS.md",
36
36
  "AGENT_INSTRUCTIONS_SHORT.md",
37
+ "AI-SUMMARIES.md",
37
38
  "CHANGELOG.md",
39
+ "CODE-HEALTH.md",
40
+ "CODE-HISTORY.md",
41
+ "FINDING-CODE.md",
42
+ "FULL-INSTALLATAION-GUIDE.md",
38
43
  "LICENSE",
39
- "docs/",
40
- "guide/"
44
+ "NAVIGATING-NEW-CODE.md",
45
+ "SAFE-CHANGES.md",
46
+ "TEAM-SETUP.md",
47
+ "USER-GUIDE.md",
48
+ "WEB-UI.md",
49
+ "WHY-PURECONTEXT.md",
50
+ "WORKFLOW-ONBOARDING.md",
51
+ "WORKFLOW-PR-REVIEW.md",
52
+ "WORKFLOW-REFACTORING.md",
53
+ "docs/"
41
54
  ],
42
55
  "main": "./dist/index.js",
43
56
  "exports": {
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes