ai-readme-mcp 0.4.3 → 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.
- package/README.md +32 -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:**
|
|
13
|
+
**Works with:** GitHub Copilot (VSCode 1.102+), Claude Code, Cursor, and other MCP-compatible AI tools.
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
@@ -78,7 +78,7 @@ This MCP (Model Context Protocol) server automates the entire workflow:
|
|
|
78
78
|
In your project directory, run:
|
|
79
79
|
|
|
80
80
|
```bash
|
|
81
|
-
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
|
|
82
82
|
```
|
|
83
83
|
|
|
84
84
|
This creates a `.mcp.json` file that uses `npx` to run the package - no installation or path configuration needed!
|
|
@@ -143,6 +143,36 @@ Add to Cursor's MCP configuration file:
|
|
|
143
143
|
|
|
144
144
|
After configuring, restart Cursor completely.
|
|
145
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
|
+
|
|
146
176
|
### For Claude Desktop Application
|
|
147
177
|
|
|
148
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.
|
|
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",
|