|
| 1 | +# Search Tools |
| 2 | + |
| 3 | +This document describes the search tools available in the Azure DevOps MCP server. |
| 4 | + |
| 5 | +## search_code |
| 6 | + |
| 7 | +The `search_code` tool allows you to search for code across repositories in an Azure DevOps project. It uses the Azure DevOps Search API to find code matching your search criteria and can optionally include the full content of the files in the results. |
| 8 | + |
| 9 | +### Parameters |
| 10 | + |
| 11 | +| Parameter | Type | Required | Description | |
| 12 | +|-----------|------|----------|-------------| |
| 13 | +| searchText | string | Yes | The text to search for in the code | |
| 14 | +| projectId | string | Yes | The ID or name of the project to search in | |
| 15 | +| filters | object | No | Optional filters to narrow search results | |
| 16 | +| filters.Repository | string[] | No | Filter by repository names | |
| 17 | +| filters.Path | string[] | No | Filter by file paths | |
| 18 | +| filters.Branch | string[] | No | Filter by branch names | |
| 19 | +| filters.CodeElement | string[] | No | Filter by code element types (function, class, etc.) | |
| 20 | +| top | number | No | Number of results to return (default: 100, max: 1000) | |
| 21 | +| skip | number | No | Number of results to skip for pagination (default: 0) | |
| 22 | +| includeSnippet | boolean | No | Whether to include code snippets in results (default: true) | |
| 23 | +| includeContent | boolean | No | Whether to include full file content in results (default: true) | |
| 24 | + |
| 25 | +### Response |
| 26 | + |
| 27 | +The response includes: |
| 28 | + |
| 29 | +- `count`: The total number of matching files |
| 30 | +- `results`: An array of search results, each containing: |
| 31 | + - `fileName`: The name of the file |
| 32 | + - `path`: The path to the file |
| 33 | + - `content`: The full content of the file (if `includeContent` is true) |
| 34 | + - `matches`: Information about where the search text was found in the file |
| 35 | + - `collection`: Information about the collection |
| 36 | + - `project`: Information about the project |
| 37 | + - `repository`: Information about the repository |
| 38 | + - `versions`: Information about the versions of the file |
| 39 | +- `facets`: Aggregated information about the search results, such as counts by repository, path, etc. |
| 40 | + |
| 41 | +### Examples |
| 42 | + |
| 43 | +#### Basic Search |
| 44 | + |
| 45 | +```json |
| 46 | +{ |
| 47 | + "searchText": "function searchCode", |
| 48 | + "projectId": "MyProject" |
| 49 | +} |
| 50 | +``` |
| 51 | + |
| 52 | +#### Search with Filters |
| 53 | + |
| 54 | +```json |
| 55 | +{ |
| 56 | + "searchText": "function searchCode", |
| 57 | + "projectId": "MyProject", |
| 58 | + "filters": { |
| 59 | + "Repository": ["MyRepo"], |
| 60 | + "Path": ["/src"], |
| 61 | + "Branch": ["main"], |
| 62 | + "CodeElement": ["function", "class"] |
| 63 | + } |
| 64 | +} |
| 65 | +``` |
| 66 | + |
| 67 | +#### Search with Pagination |
| 68 | + |
| 69 | +```json |
| 70 | +{ |
| 71 | + "searchText": "function", |
| 72 | + "projectId": "MyProject", |
| 73 | + "top": 10, |
| 74 | + "skip": 20 |
| 75 | +} |
| 76 | +``` |
| 77 | + |
| 78 | +#### Search without File Content |
| 79 | + |
| 80 | +```json |
| 81 | +{ |
| 82 | + "searchText": "function", |
| 83 | + "projectId": "MyProject", |
| 84 | + "includeContent": false |
| 85 | +} |
| 86 | +``` |
| 87 | + |
| 88 | +### Notes |
| 89 | + |
| 90 | +- The search is performed using the Azure DevOps Search API, which is separate from the core Azure DevOps API. |
| 91 | +- The search API uses a different base URL (`almsearch.dev.azure.com`) than the regular Azure DevOps API. |
| 92 | +- When `includeContent` is true, the tool makes additional API calls to fetch the full content of each file in the search results. |
| 93 | +- The search API supports a variety of search syntax, including wildcards, exact phrases, and boolean operators. See the [Azure DevOps Search documentation](https://learn.microsoft.com/en-us/azure/devops/project/search/get-started-search?view=azure-devops) for more information. |
| 94 | +- The `CodeElement` filter allows you to filter by code element types such as `function`, `class`, `method`, `property`, `variable`, `comment`, etc. |
0 commit comments