Skip to content

Commit 7e8bbc7

Browse files
committed
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
1 parent efefecf commit 7e8bbc7

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ Interact with these Azure DevOps services:
7171
- **wit_get_work_item_type**: Get a specific work item type.
7272
- **wit_get_query**: Get a query by its ID or path.
7373
- **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.
7475
- **wit_update_work_items_batch**: Update work items in batch.
7576
- **wit_work_items_link**: Link work items together in batch.
7677
- **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`.
211212
> 💥 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.
212213
> 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.
213214
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+
214235
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.
215236

216237
## 📝 Troubleshooting

0 commit comments

Comments
 (0)