Skip to content

Commit 0a20179

Browse files
hugobessaraisiqueira
authored andcommitted
Update README with GitHub Copilot setup instructions
Added installation instructions for GitHub Copilot Chat extension and configuration steps for Django project.
1 parent a46ed27 commit 0a20179

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ A Model Context Protocol (MCP) server for Django applications, inspired by [Lara
1515
- [AI Tools Setup](#ai-tools-setup)
1616
- [Cursor](#cursor)
1717
- [Claude Desktop](#claude-desktop)
18+
- [Github Copilot (VS Code)](#gh-copilot-vs-code)
1819
- [Claude Code (VS Code)](#claude-code-vs-code-extension)
1920
- [OpenAI ChatGPT Desktop](#openai-chatgpt-desktop-with-mcp)
2021
- [Cline (VS Code)](#cline-vs-code-extension)
@@ -156,6 +157,38 @@ Add to your Claude Desktop configuration:
156157

157158
**Note**: Make sure to replace `/path/to/your/django/project` with the actual path to your Django project root directory.
158159

160+
161+
### Claude Code (VS Code Extension)
162+
163+
1. Install the Github Copilot Chat extension from VS Code marketplace
164+
2. Create or edit `.vscode/mcp.json` in your Django project root:
165+
166+
```json
167+
{
168+
"inputs": [
169+
// The "inputs" section defines the inputs required for the MCP server configuration.
170+
{
171+
"type": "promptString"
172+
}
173+
],
174+
"servers": {
175+
// The "servers" section defines the MCP servers you want to use.
176+
"django-ai-boost": {
177+
"command": "uv",
178+
"args": ["run", "django-ai-boost", "--settings", "myproject.settings"],
179+
"env": {
180+
"DJANGO_SETTINGS_MODULE": "myproject.settings"
181+
}
182+
}
183+
}
184+
}
185+
```
186+
187+
3. Click "Start" in the JSON
188+
<img width="1182" height="642" alt="image" src="https://github.com/user-attachments/assets/9a0ea532-80bd-4bd7-bbd2-7d4afd726b32" />
189+
190+
5. Github Copilot Code will automatically connect to the MCP server when you start a conversation in "Agent" mode.
191+
159192
### Claude Code (VS Code Extension)
160193

161194
1. Install the Claude Code extension from VS Code marketplace

0 commit comments

Comments
 (0)