Search Azure DevOps Wiki Content
MCP server that enables AI agents to search and retrieve content from Azure DevOps Wiki through two tools: search_wiki and get_wiki_by_path.
Why it matters
Enable AI agents to efficiently search and retrieve information directly from Azure DevOps Wiki. This connector allows for seamless integration with tools like GitHub Copilot for enhanced knowledge discovery.
Outcomes
What it gets done
Search Azure DevOps Wiki using natural language queries.
Retrieve specific wiki pages by their path.
Integrate with VS Code and GitHub Copilot for contextual information retrieval.
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/vb-azure-wiki-search | bash Capabilities
Tools your agent gets
Search Edge Wiki to find related materials for a given query
Retrieve wiki content by the specified path
Overview
Azure Wiki Search MCP Server
What it does
Azure Wiki Search MCP Server implements the Model Context Protocol (MCP) specification to enable AI agents to search and retrieve content from Azure DevOps Wiki. It provides two tools-`search_wiki` for finding related materials for a given query and `get_wiki_by_path` for retrieving wiki content by specified path.
How it connects
Use this connector when you need AI agents to search and retrieve documentation from Azure DevOps Wiki. It's designed for teams that maintain content in Azure DevOps Wiki and want to make it accessible through MCP-compatible AI tools. When NOT to use: If your wiki content is not hosted in Azure DevOps.
Source README
An MCP server that implements the MCP specification, enabling AI agents to search and retrieve content from Azure DevOps Wiki.
Installation
From Source Code
git clone https://github.com/coder-linping/azure-wiki-search-server.git
cd azure-wiki-search-server
# Windows:
uv venv
.venv/Scripts/activate
# Mac/Linux:
uv venv
source .venv/bin/activate
Configuration
VS Code
{
"mcp": {
"servers": {
"edge_wiki": {
"command": "uv",
"args": [
"--directory",
"<absolute path to your cloned folder>",
"run",
"src/edge_wiki.py"
],
"env": {
"ORG": "Your organization,default is microsoft",
"PROJECT": "Your project, default is Edge"
}
}
}
}
}
Available Tools
| Tool | Description |
|---|---|
search_wiki |
Search Edge Wiki to find related materials for a given query |
get_wiki_by_path |
Retrieve wiki content by the specified path |
Features
- Search content in Azure DevOps Wiki
- Retrieve specific wiki pages by path
- Integration with VS Code via GitHub Copilot
Environment Variables
Optional
ORG- Your organization (default: microsoft)PROJECT- Your project (default: Edge)
Notes
Requires VS Code with GitHub Copilot extensions, Python 3.10+, and the uv package manager. Configuration can be added to VS Code user settings (JSON) or in .vscode/mcp.json for workspace sharing.
Discussion
Questions & comments · 0
Sign In Sign in to leave a comment.