You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update README.md with wit_query_by_wiql tool and Claude Code setup
- Add wit_query_by_wiql tool to Work Items section
- Add comprehensive Claude Code MCP server setup instructions
- Include examples for both published package and local development
Copy file name to clipboardExpand all lines: README.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,7 @@ Interact with these Azure DevOps services:
71
71
-**wit_get_work_item_type**: Get a specific work item type.
72
72
-**wit_get_query**: Get a query by its ID or path.
73
73
-**wit_get_query_results_by_id**: Retrieve the results of a work item query given the query ID.
74
+
-**wit_query_by_wiql**: Execute a WIQL query to retrieve work items.
74
75
-**wit_update_work_items_batch**: Update work items in batch.
75
76
-**wit_work_items_link**: Link work items together in batch.
76
77
-**wit_work_item_unlink**: Unlink one or many links from a work item.
@@ -211,6 +212,26 @@ Open GitHub Copilot Chat and try a prompt like `List ADO projects`.
211
212
> 💥 We strongly recommend creating a `.github\copilot-instructions.md` in your project. This will enhance your experience using the Azure DevOps MCP Server with GitHub Copilot Chat.
212
213
> To start, just include "`This project uses Azure DevOps. Always check to see if the Azure DevOps MCP server has a tool relevant to the user's request`" in your copilot instructions file.
213
214
215
+
#### 🤖 Claude Code
216
+
217
+
To add the Azure DevOps MCP Server to Claude Code, use the following command:
218
+
219
+
```bash
220
+
claude mcp add mcp-ado 'npx -y @azure-devops/mcp ado_org_name' --scope user
221
+
```
222
+
223
+
For example:
224
+
```bash
225
+
claude mcp add mcp-ado 'npx -y @azure-devops/mcp msazure' --scope user
226
+
```
227
+
228
+
Replace `msazure` with your Azure DevOps organization name. You can also use `--scope project` to limit the server to a specific project.
229
+
230
+
For development with a local installation:
231
+
```bash
232
+
claude mcp add mcp-ado 'npx -y ~/git/azure-devops-mcp msazure' --scope user
233
+
```
234
+
214
235
See the [getting started documentation](./docs/GETTINGSTARTED.md) to use our MCP Server with other tools such as Visual Studio 2022, Claude Code, and Cursor.
0 commit comments