ai-readme-mcp 0.4.2 → 0.4.4

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 (2) hide show
  1. package/README.md +39 -6
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  **AI_README MCP Server** is a Model Context Protocol (MCP) server that helps AI assistants understand your project conventions through dedicated `AI_README.md` guide files. It automatically discovers, routes, and manages these files so AI can generate consistent, high-quality code that matches your team's standards.
12
12
 
13
- **Works with:** Cursor, Claude Code, and other MCP-compatible AI tools.
13
+ **Works with:** GitHub Copilot (VSCode 1.102+), Claude Code, Cursor, and other MCP-compatible AI tools.
14
14
 
15
15
  ---
16
16
 
@@ -20,9 +20,9 @@ When working with AI assistants (like Claude, GPT, or other AI coding tools), yo
20
20
 
21
21
  - ❌ **Inconsistent code style** - AI generates code that doesn't match your project's conventions
22
22
  - ❌ **Repeated instructions** - You have to tell the AI the same rules over and over
23
- - ❌ **Team inconsistency** - Different team members get different AI outputs
23
+ - ❌ **Team inconsistency** - Different team members get different AI outputs, leading to fragmented code quality
24
24
  - ❌ **Context loss** - AI forgets your project's specific patterns and best practices
25
- - ❌ **Outdated documentation** - Project conventions change, but documentation lags behind
25
+ - ❌ **No single source of truth** - Team conventions exist in Slack messages, PRs, and people's heads, not in a format AI can use
26
26
 
27
27
  ## 💡 The Solution
28
28
 
@@ -32,13 +32,15 @@ Think of it as:
32
32
  - 📖 A "style guide" that AI reads before writing code
33
33
  - 🎓 An "onboarding document" that teaches AI your project's conventions
34
34
  - 🔧 A "configuration file" for AI behavior in your codebase
35
+ - 🤝 A **"team contract"** that ensures every developer's AI assistant follows the same standards
35
36
 
36
37
  ### How It Works
37
38
 
38
39
  1. **Create** `AI_README.md` files in your project (root or specific directories)
39
40
  2. **Document** your conventions: coding standards, architecture patterns, naming rules, testing requirements
40
- 3. **AI reads it automatically** before making changes - ensuring consistent, high-quality output
41
- 4. **Keep it in sync** - AI can update the README as your project evolves
41
+ 3. **Commit to git** - Share conventions with your entire team
42
+ 4. **AI reads it automatically** before making changes - ensuring every team member's AI follows the same rules
43
+ 5. **Keep it in sync** - AI can update the README as your project evolves
42
44
 
43
45
  ### What This MCP Server Does
44
46
 
@@ -58,6 +60,7 @@ This MCP (Model Context Protocol) server automates the entire workflow:
58
60
 
59
61
  - 🔍 **Automatic Discovery** - Scan and index all AI_README.md files in your project
60
62
  - 🎯 **Smart Context Routing** - Find relevant README content based on file paths
63
+ - 🤝 **Team Consistency** - Every team member's AI assistant reads the same conventions from git, ensuring uniform code quality
61
64
  - 🚀 **Guided Initialization** - `init_ai_readme` tool scans for empty files and guides AI through population
62
65
  - 🔄 **Update & Sync** - AI can both read and update AI_README files
63
66
  - ✅ **Validation & Quality** - Ensure README consistency with token limits and structure checks
@@ -75,7 +78,7 @@ This MCP (Model Context Protocol) server automates the entire workflow:
75
78
  In your project directory, run:
76
79
 
77
80
  ```bash
78
- claude mcp add --scope project ai-readme-manager npx -- ai-readme-mcp
81
+ claude mcp add --scope project ai-readme-manager npx -- -y ai-readme-mcp
79
82
  ```
80
83
 
81
84
  This creates a `.mcp.json` file that uses `npx` to run the package - no installation or path configuration needed!
@@ -140,6 +143,36 @@ Add to Cursor's MCP configuration file:
140
143
 
141
144
  After configuring, restart Cursor completely.
142
145
 
146
+ ### For GitHub Copilot (VSCode 1.102+)
147
+
148
+ **Requirements:**
149
+ - VSCode 1.102 or later
150
+ - GitHub Copilot & Copilot Chat extensions installed
151
+
152
+ **Option 1: Using VSCode Settings UI**
153
+
154
+ 1. Open VSCode Settings (Ctrl+,)
155
+ 2. Search for "MCP"
156
+ 3. Click "Edit in settings.json"
157
+ 4. Add the MCP server configuration
158
+
159
+ **Option 2: Manual Configuration**
160
+
161
+ Add to your VSCode `settings.json`:
162
+
163
+ ```json
164
+ {
165
+ "github.copilot.chat.mcp.servers": {
166
+ "ai-readme-manager": {
167
+ "command": "npx",
168
+ "args": ["-y", "ai-readme-mcp"]
169
+ }
170
+ }
171
+ }
172
+ ```
173
+
174
+ After configuring, restart VSCode and you'll see the MCP tools available in GitHub Copilot Chat!
175
+
143
176
  ### For Claude Desktop Application
144
177
 
145
178
  Add to `claude_desktop_config.json`:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-readme-mcp",
3
- "version": "0.4.2",
3
+ "version": "0.4.4",
4
4
  "description": "MCP server for managing AI_README.md files in projects",
5
5
  "type": "module",
6
6
  "bin": {
@@ -45,8 +45,12 @@
45
45
  "readme",
46
46
  "context",
47
47
  "claude",
48
+ "copilot",
49
+ "github-copilot",
50
+ "cursor",
48
51
  "llm",
49
- "model-context-protocol"
52
+ "model-context-protocol",
53
+ "vscode"
50
54
  ],
51
55
  "author": "Draco Cheng <draco.cheng@outlook.com>",
52
56
  "license": "MIT",