by coder-linping
Provides tools for AI agents to query Azure Edge Wiki content through MCP‑compliant endpoints.
Enables AI agents to perform knowledge lookup on Azure Edge Wiki using two MCP tools: search_wiki
for keyword‑based queries and get_wiki_by_path
for retrieving full page content.
settings.json
or a workspace .vscode/mcp.json
file, specifying the absolute path to the cloned folder and optional ORG
/PROJECT
environment variables.search_wiki
or get_wiki_by_path
tools defined by the server.search_wiki
– returns relevant wiki entries for a free‑form query.get_wiki_by_path
– fetches the full content of a wiki page given its path.ORG
and PROJECT
environment variables (defaults: microsoft
and Edge
).uv
for dependency management.Q: Do I need any special credentials to access the wiki? A: The server uses the public Edge Wiki; no API keys are required.
Q: Can I change the default organization or project?
A: Yes, set the ORG
and PROJECT
environment variables in the MCP server config.
Q: Which Python version is required? A: Python 3.10 or higher.
Q: Is uv
mandatory?
A: uv
is the recommended tool for creating the virtual environment, but any standard Python venv manager can be used.
This mcp server implements the MCP specification to allow AI agents to search on Azure wiki.
search_wiki
Search Edge Wiki to find related material for {query}.
get_wiki_by_path
Get wiki content by provided path.
Install the latest VS code.
Install the GitHub Copilot and GitHub Copilot Chat extensions
Install Python 3.10 or higher.
Install uv. On Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
On Mac|Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
Clone this repo.
git clone https://github.com/coder-linping/azure-wiki-search-server.git
cd azure-wiki-search-server
Setup env. On Windows
uv venv
.venv/Scripts/activate
On Mac | Linux
uv venv
source .venv/bin/activate
Configuration for VS Code
For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P and typing Preferences: Open User Settings (JSON).
Optionally, you can add it to a file called .vscode/mcp.json in your workspace. This will allow you to share the configuration with others.
"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"
},
}
}
}
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "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" } } } }
Explore related MCPs that share similar capabilities and solve comparable challenges
by exa-labs
Provides real-time web search capabilities to AI assistants via a Model Context Protocol server, enabling safe and controlled access to the Exa AI Search API.
by elastic
Enables natural‑language interaction with Elasticsearch indices via the Model Context Protocol, exposing tools for listing indices, fetching mappings, performing searches, running ES|QL queries, and retrieving shard information.
by graphlit
Enables integration between MCP clients and the Graphlit platform, providing ingestion, extraction, retrieval, and RAG capabilities across a wide range of data sources and connectors.
by mamertofabian
Fast cross‑platform file searching leveraging the Everything SDK on Windows, Spotlight on macOS, and locate/plocate on Linux.
by cr7258
Provides Elasticsearch and OpenSearch interaction via Model Context Protocol, enabling document search, index management, cluster monitoring, and alias operations.
by liuyoshio
Provides natural‑language search and recommendation for Model Context Protocol servers, delivering rich metadata and real‑time updates.
by ihor-sokoliuk
Provides web search capabilities via the SearXNG API, exposing them through an MCP server for seamless integration with AI agents and tools.
by fatwang2
Provides web and news search, URL crawling, sitemap extraction, deep‑reasoning, and trending topic retrieval via Search1API, exposed as an MCP server for integration with AI clients.
by cnych
Provides SEO data retrieval via Ahrefs, exposing MCP tools for backlink analysis, keyword generation, traffic estimation, and keyword difficulty, with automated CAPTCHA solving and response caching.